Skip to content

Commit

Permalink
Merge pull request #112 from gnikit/chore/fix-typings
Browse files Browse the repository at this point in the history
chore: fix `last_moved` type
  • Loading branch information
gnikit authored Nov 17, 2024
2 parents c13afbd + 55d2529 commit 9a1500e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tktooltip/tooltip.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def __init__(
self.y_offset = y_offset
# visibility status of the ToolTip inside|outside|visible
self.status = ToolTipStatus.OUTSIDE
self.last_moved = 0
self.last_moved = 0.0
# use Message widget to host ToolTip
self.message_kwargs: dict = self.DEFAULT_MESSAGE_KWARGS.copy()
self.message_kwargs.update(message_kwargs)
Expand Down

0 comments on commit 9a1500e

Please sign in to comment.