mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-03-26 02:26:36 +08:00
Use lowercase tuple where possible (#6170)
This commit is contained in:
@@ -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]: ...
|
||||
|
||||
Reference in New Issue
Block a user