1
0
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:
David Sangrey 2024-03-23 17:05:14 -04:00
parent 813cf92521
commit ccda74c8f1
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC

@ -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)