Skip to content

Commit

Permalink
Merge pull request #8544 from radarhere/type_hints_quotes
Browse files Browse the repository at this point in the history
Removed quotes after dropping support for Python 3.8
  • Loading branch information
mergify[bot] authored Nov 9, 2024
2 parents 9f09d48 + 7674b1a commit ab496d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PIL/_typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit ab496d0

Please sign in to comment.