This commit is contained in:
Bruno Cabral 2023-08-01 12:14:30 -07:00 committed by GitHub
commit 2d7b3e635e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ class CTkSlider(CTkBaseClass):
button_color: Optional[Union[str, Tuple[str, str]]] = None,
button_hover_color: Optional[Union[str, Tuple[str, str]]] = None,
from_: int = 0,
to: int = 1,
from_: int | float = 0,
to: int | float = 1,
state: str = "normal",
number_of_steps: Union[int, None] = None,
hover: bool = True,