1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-06-03 00:51:11 +03:00

Removed tabs

This commit is contained in:
A_D 2020-10-12 19:52:31 +02:00 committed by Athanasius
parent 7f5bfa36f0
commit 2819c92006

View File

@ -268,9 +268,9 @@ def export_ships(companion_data: Dict[str, Any], filename: AnyStr) -> None:
class StatsDialog():
"""Status dialog containing all of the current cmdr's stats."""
def __init__(self, app: 'AppWindow') -> None:
self.parent: tk.Tk = app.w
self.status = app.status
def __init__(self, parent: tk.Tk, status: tk.Label) -> None:
self.parent: tk.Tk = parent
self.status = status
self.showstats()
def showstats(self) -> None: