Drop Python 3.9 support

This commit is contained in:
François Voron
2025-10-25 08:19:03 +02:00
parent ae5ff025ef
commit fcf9a2041a
33 changed files with 224 additions and 234 deletions

View File

@ -1,3 +1,3 @@
from typing import Any, Union
from typing import Any
OpenAPIResponseType = dict[Union[int, str], dict[str, Any]]
OpenAPIResponseType = dict[int | str, dict[str, Any]]