mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-19 18:37:39 +03:00
[Minor] Remove Crappy Type Hint
This commit is contained in:
parent
813cf92521
commit
ccda74c8f1
@ -90,7 +90,7 @@ class Label(tk.Label):
|
|||||||
class EntryMenu(ttk.Entry):
|
class EntryMenu(ttk.Entry):
|
||||||
"""Extended entry widget that includes a context menu with Copy, Cut-and-Paste commands."""
|
"""Extended entry widget that includes a context menu with Copy, Cut-and-Paste commands."""
|
||||||
|
|
||||||
def __init__(self, *args: ttk.Frame | None, **kwargs) -> None:
|
def __init__(self, *args, **kwargs) -> None:
|
||||||
super().__init__(*args, **kwargs)
|
super().__init__(*args, **kwargs)
|
||||||
|
|
||||||
self.menu = tk.Menu(self, tearoff=False)
|
self.menu = tk.Menu(self, tearoff=False)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user