Skip to content

Commit

Permalink
As I was saying, fixed type signatures...
Browse files Browse the repository at this point in the history
  • Loading branch information
ElSaico committed May 26, 2024
1 parent 34dab8e commit fa3ab46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ttkHyperlinkLabel.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ def open_station(self, url: str):
return webbrowser.open(opener)

def configure( # noqa: CCR001
self, cnf: dict[str, Any] | None = None, **kw: Any
) -> dict[str, tuple[str, str, str, Any, Any]]:
self, cnf: dict[str, Any] | None = None, **kw
) -> dict[str, tuple[str, str, str, Any, Any]] | None:
"""Change cursor and appearance depending on state and text."""
# This class' state
for thing in ('url', 'popup_copy', 'underline'):
Expand Down

0 comments on commit fa3ab46

Please sign in to comment.