Skip to content

Commit b8aa45f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 413fae6 commit b8aa45f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

stdlib/tkinter/__init__.pyi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,9 @@ class Grid:
11531153
ipady: float | str = ...,
11541154
padx: float | str | tuple[float | str, float | str] = ...,
11551155
pady: float | str | tuple[float | str, float | str] = ...,
1156-
sticky: str | list[str] | tuple[str,...] = ..., # consists of letters 'n', 's', 'w', 'e', may contain repeats, may be empty
1156+
sticky: (
1157+
str | list[str] | tuple[str, ...]
1158+
) = ..., # consists of letters 'n', 's', 'w', 'e', may contain repeats, may be empty
11571159
in_: Misc = ...,
11581160
**kw: Any, # allow keyword argument named 'in', see #4836
11591161
) -> None: ...

0 commit comments

Comments
 (0)