Use _typeshed.FileDescriptorOrPath in stubs (#9695)

This commit is contained in:
Avasam
2023-02-09 02:30:19 -05:00
committed by GitHub
parent 6d535bf0a3
commit 372073d35b
13 changed files with 39 additions and 53 deletions

View File

@@ -1,4 +1,4 @@
from _typeshed import Incomplete, StrOrBytesPath, SupportsRead
from _typeshed import FileDescriptorOrPath, Incomplete, SupportsRead
from typing import Any, Protocol
from typing_extensions import Literal
@@ -109,7 +109,7 @@ class TransposedFont:
def getsize(self, text: str | bytes, *args, **kwargs) -> tuple[int, int]: ...
def getmask(self, text: str | bytes, mode: str = ..., *args, **kwargs): ...
def load(filename: StrOrBytesPath | int) -> ImageFont: ...
def load(filename: FileDescriptorOrPath) -> ImageFont: ...
def truetype(
font: str | bytes | SupportsRead[bytes] | None = ...,
size: int = ...,