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

theme.py: Minor typing fix

This commit is contained in:
Athanasius 2022-12-22 13:32:52 +00:00
parent 36bd08d715
commit 777b38e179
No known key found for this signature in database
GPG Key ID: 772697E181BB2767

View File

@ -131,7 +131,7 @@ class _Theme(object):
THEME_TRANSPARENT = 2
def __init__(self) -> None:
self.active = None # Starts out with no theme
self.active: int | None = None # Starts out with no theme
self.minwidth: Optional[int] = None
self.widgets: Dict[tk.Widget | tk.BitmapImage, Set] = {}
self.widgets_pair: List = []