Drop Python 3.8 support

This commit is contained in:
François Voron
2024-11-03 12:51:32 +00:00
committed by GitHub
parent 7f92a82e07
commit caa17889e1
41 changed files with 231 additions and 251 deletions

View File

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