mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-28 14:46:55 +08:00
make BitmapImage keyword arguments optional (#4926)
This commit is contained in:
@@ -2690,12 +2690,12 @@ class BitmapImage(Image):
|
||||
cnf: Dict[str, Any] = ...,
|
||||
master: Optional[Union[Misc, _tkinter.TkappType]] = ...,
|
||||
*,
|
||||
background: _Color,
|
||||
data: str,
|
||||
file: AnyPath,
|
||||
foreground: _Color,
|
||||
maskdata: str,
|
||||
maskfile: AnyPath,
|
||||
background: _Color = ...,
|
||||
data: str = ...,
|
||||
file: AnyPath = ...,
|
||||
foreground: _Color = ...,
|
||||
maskdata: str = ...,
|
||||
maskfile: AnyPath = ...,
|
||||
) -> None: ...
|
||||
|
||||
def image_names() -> Tuple[str, ...]: ...
|
||||
|
||||
Reference in New Issue
Block a user