Use lowercase tuple where possible (#6170)

This commit is contained in:
Akuli
2021-10-15 00:18:19 +00:00
committed by GitHub
parent 5f386b0575
commit 994b69ef8f
242 changed files with 1212 additions and 1224 deletions

View File

@@ -193,7 +193,7 @@ class HList(TixWidget, tkinter.XView, tkinter.YView):
def indicator_delete(self, entry: str) -> None: ...
def indicator_size(self, entry: str) -> int: ...
def info_anchor(self) -> str: ...
def info_bbox(self, entry: str) -> Tuple[int, int, int, int]: ...
def info_bbox(self, entry: str) -> tuple[int, int, int, int]: ...
def info_children(self, entry: str | None = ...) -> Tuple[str, ...]: ...
def info_data(self, entry: str) -> Any: ...
def info_dragsite(self) -> str: ...
@@ -296,6 +296,6 @@ class Form:
def form(self, cnf: dict[str, Any] = ..., **kw: Any) -> None: ...
def check(self) -> bool: ...
def forget(self) -> None: ...
def grid(self, xsize: int = ..., ysize: int = ...) -> Tuple[int, int] | None: ...
def grid(self, xsize: int = ..., ysize: int = ...) -> tuple[int, int] | None: ...
def info(self, option: str | None = ...) -> Any: ...
def slaves(self) -> list[tkinter.Widget]: ...