stdlib: use bool for annotations where the default is False (#9672)

This commit is contained in:
Alex Waygood
2023-02-04 11:58:18 +00:00
committed by GitHub
parent 37a180ef7b
commit 1e3d762a12
5 changed files with 27 additions and 27 deletions

View File

@@ -421,7 +421,7 @@ class Misc:
def winfo_viewable(self) -> bool: ...
def winfo_visual(self) -> str: ...
def winfo_visualid(self) -> str: ...
def winfo_visualsavailable(self, includeids: int = False) -> list[tuple[str, int]]: ...
def winfo_visualsavailable(self, includeids: bool = False) -> list[tuple[str, int]]: ...
def winfo_vrootheight(self) -> int: ...
def winfo_vrootwidth(self) -> int: ...
def winfo_vrootx(self) -> int: ...