1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 07:47:14 +03:00

[Minor] Clarify Inheritence

This commit is contained in:
David Sangrey 2024-04-14 20:32:43 -04:00
parent 0410806152
commit 5cc08f2517
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC

View File

@ -63,7 +63,7 @@ class Label(tk.Label):
super().__init__(master, **kw)
class EntryMenu:
class EntryMenu(ttk.Entry):
"""Extended entry widget that includes a context menu with Copy, Cut-and-Paste commands."""
def __init__(self, *args, **kwargs) -> None:
@ -120,7 +120,7 @@ class EntryMenu:
pass
class Entry(ttk.Entry, EntryMenu):
class Entry(EntryMenu):
"""Custom t(t)k.Entry class to fix some display issues."""
# DEPRECATED: Migrate to ttk.Entry or EntryMenu. Will remove in 5.12 or later.