Merge pull request #8544 from radarhere/type_hints_quotes

Removed quotes after dropping support for Python 3.8
This commit is contained in:
mergify[bot] 2024-11-09 08:20:12 +00:00 committed by GitHub
commit ab496d04ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,7 @@ class SupportsRead(Protocol[_T_co]):
def read(self, __length: int = ...) -> _T_co: ...
StrOrBytesPath = Union[str, bytes, "os.PathLike[str]", "os.PathLike[bytes]"]
StrOrBytesPath = Union[str, bytes, os.PathLike[str], os.PathLike[bytes]]
__all__ = ["Buffer", "IntegralLike", "StrOrBytesPath", "SupportsRead", "TypeGuard"]