mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
fix image type hints #795
This commit is contained in:
parent
a49dde63b3
commit
042fac7242
@ -40,7 +40,7 @@ class CTkButton(CTkBaseClass):
|
|||||||
text: str = "CTkButton",
|
text: str = "CTkButton",
|
||||||
font: Optional[Union[tuple, CTkFont]] = None,
|
font: Optional[Union[tuple, CTkFont]] = None,
|
||||||
textvariable: Union[tkinter.Variable, None] = None,
|
textvariable: Union[tkinter.Variable, None] = None,
|
||||||
image: Union[tkinter.PhotoImage, CTkImage, None] = None,
|
image: Union[CTkImage, None] = None,
|
||||||
state: str = "normal",
|
state: str = "normal",
|
||||||
hover: bool = True,
|
hover: bool = True,
|
||||||
command: Union[Callable[[], None], None] = None,
|
command: Union[Callable[[], None], None] = None,
|
||||||
|
@ -32,7 +32,7 @@ class CTkLabel(CTkBaseClass):
|
|||||||
|
|
||||||
text: str = "CTkLabel",
|
text: str = "CTkLabel",
|
||||||
font: Optional[Union[tuple, CTkFont]] = None,
|
font: Optional[Union[tuple, CTkFont]] = None,
|
||||||
image: Union[tkinter.PhotoImage, CTkImage, None] = None,
|
image: Union[CTkImage, None] = None,
|
||||||
compound: str = "center",
|
compound: str = "center",
|
||||||
anchor: str = "center", # label anchor: center, n, e, s, w
|
anchor: str = "center", # label anchor: center, n, e, s, w
|
||||||
wraplength: int = 0,
|
wraplength: int = 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user