mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 04:25:50 +08:00
tkinter: Accept list and tuple in grid sticky option (#15508)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Akuli <akuviljanen17@gmail.com>
This commit is contained in:
@@ -1153,7 +1153,9 @@ class Grid:
|
||||
ipady: float | str = ...,
|
||||
padx: float | str | tuple[float | str, float | str] = ...,
|
||||
pady: float | str | tuple[float | str, float | str] = ...,
|
||||
sticky: str = ..., # consists of letters 'n', 's', 'w', 'e', may contain repeats, may be empty
|
||||
sticky: (
|
||||
str | list[str] | tuple[str, ...]
|
||||
) = ..., # consists of letters 'n', 's', 'w', 'e', may contain repeats, may be empty
|
||||
in_: Misc = ...,
|
||||
**kw: Any, # allow keyword argument named 'in', see #4836
|
||||
) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user