@@ -407,7 +407,7 @@ class Misc:
407
407
pad : _ScreenUnits = ...,
408
408
uniform : str = ...,
409
409
weight : int = ...,
410
- ) -> _GridIndexInfo | Any : ... # can be None but annoyying to check
410
+ ) -> _GridIndexInfo | Any : ... # can be None but annoying to check
411
411
columnconfigure = grid_columnconfigure
412
412
rowconfigure = grid_rowconfigure
413
413
def grid_location (self , x : _ScreenUnits , y : _ScreenUnits ) -> tuple [int , int ]: ...
@@ -730,7 +730,7 @@ class Pack:
730
730
forget = pack_forget
731
731
propagate = Misc .pack_propagate
732
732
# commented out to avoid mypy getting confused with multiple
733
- # inheritance and how things get overrided with different things
733
+ # inheritance and how things get overridden with different things
734
734
# info = pack_info
735
735
# pack_propagate = Misc.pack_propagate
736
736
# configure = pack_configure
@@ -774,7 +774,7 @@ class Place:
774
774
place = place_configure
775
775
info = place_info
776
776
# commented out to avoid mypy getting confused with multiple
777
- # inheritance and how things get overrided with different things
777
+ # inheritance and how things get overridden with different things
778
778
# config = place_configure
779
779
# configure = place_configure
780
780
# forget = place_forget
@@ -816,7 +816,7 @@ class Grid:
816
816
location = Misc .grid_location
817
817
size = Misc .grid_size
818
818
# commented out to avoid mypy getting confused with multiple
819
- # inheritance and how things get overrided with different things
819
+ # inheritance and how things get overridden with different things
820
820
# bbox = Misc.grid_bbox
821
821
# grid_bbox = Misc.grid_bbox
822
822
# forget = grid_forget
@@ -954,7 +954,7 @@ class Button(Widget):
954
954
state : Literal ["normal" , "active" , "disabled" ] = ...,
955
955
takefocus : _TakeFocusValue = ...,
956
956
text : float | str = ...,
957
- # We allow the textvariable to be any Variable, not necessarly
957
+ # We allow the textvariable to be any Variable, not necessarily
958
958
# StringVar. This is useful for e.g. a button that displays the value
959
959
# of an IntVar.
960
960
textvariable : Variable = ...,
@@ -2960,7 +2960,7 @@ class OptionMenu(Menubutton):
2960
2960
command : Callable [[StringVar ], Any ] | None = ...,
2961
2961
) -> None : ...
2962
2962
# configure, config, cget are inherited from Menubutton
2963
- # destroy and __getitem__ are overrided , signature does not change
2963
+ # destroy and __getitem__ are overridden , signature does not change
2964
2964
2965
2965
class _Image (Protocol ):
2966
2966
tk : _tkinter .TkappType
0 commit comments