mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-12 23:37:14 +03:00
[Fix] Correct Type Hint
This commit is contained in:
parent
1cd62aea24
commit
df7d449c9b
@ -36,7 +36,7 @@ if TYPE_CHECKING:
|
||||
class HyperlinkLabel(sys.platform == 'darwin' and tk.Label or ttk.Label): # type: ignore
|
||||
"""Clickable label for HTTP links."""
|
||||
|
||||
def __init__(self, master: ttk.Frame | None = None, **kw: Any) -> None:
|
||||
def __init__(self, master: ttk.Frame | tk.Frame | None = None, **kw: Any) -> None:
|
||||
"""
|
||||
Initialize the HyperlinkLabel.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user