make BitmapImage keyword arguments optional (#4926)

This commit is contained in:
Akuli
2021-01-09 22:26:49 +02:00
committed by GitHub
parent 41ba271160
commit 206da3280e

View File

@@ -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, ...]: ...