From 206da3280ed3f69068210b82b6930ad572edb318 Mon Sep 17 00:00:00 2001 From: Akuli Date: Sat, 9 Jan 2021 22:26:49 +0200 Subject: [PATCH] make BitmapImage keyword arguments optional (#4926) --- stdlib/3/tkinter/__init__.pyi | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/stdlib/3/tkinter/__init__.pyi b/stdlib/3/tkinter/__init__.pyi index 5e3fd7670..eeb56628b 100644 --- a/stdlib/3/tkinter/__init__.pyi +++ b/stdlib/3/tkinter/__init__.pyi @@ -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, ...]: ...