Skip to content

Commit

Permalink
Make old python versions happy again with type annoations
Browse files Browse the repository at this point in the history
  • Loading branch information
unhyperbolic committed Dec 10, 2023
1 parent b998909 commit 26aa69a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/raytracing/tooltip.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ToolTip(tk.Toplevel):
def __init__(
self,
widget: tk.Widget,
msg: str | Callable = None,
msg = None, # : str | Callable
delay: float = 1.0,
follow: bool = True,
refresh: float = 1.0,
Expand Down

0 comments on commit 26aa69a

Please sign in to comment.