mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-13 15:57:14 +03:00
[Minor] Push Back Deprecation Date
While these modules are deprecated, one minor version is a little too quick to remove. Pushes back to 6.0 for plugin developer compatibilty's sake.
This commit is contained in:
parent
c8f2b6018c
commit
3d9e46d730
@ -121,7 +121,7 @@ class EntryMenu(ttk.Entry):
|
||||
class Entry(EntryMenu):
|
||||
"""Custom ttk.Entry class to fix some display issues."""
|
||||
|
||||
# DEPRECATED: Migrate to EntryMenu. Will remove in 5.12 or later.
|
||||
# DEPRECATED: Migrate to EntryMenu. Will remove in 6.0 or later.
|
||||
def __init__(self, master: ttk.Frame | None = None, **kw):
|
||||
EntryMenu.__init__(self, master, **kw)
|
||||
|
||||
@ -139,7 +139,7 @@ class Button(ttk.Button):
|
||||
class ColoredButton(tk.Button):
|
||||
"""Custom tk.Button class to fix some display issues."""
|
||||
|
||||
# DEPRECATED: Migrate to tk.Button. Will remove in 5.12 or later.
|
||||
# DEPRECATED: Migrate to tk.Button. Will remove in 6.0 or later.
|
||||
def __init__(self, master: ttk.Frame | None = None, **kw):
|
||||
tk.Button.__init__(self, master, **kw)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user