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

config: __in_shutdown needs to be abstract member, not self. ?

This commit is contained in:
Athanasius 2021-01-12 15:55:50 +00:00
parent 104f215732
commit b7094c59f3

View File

@ -116,8 +116,9 @@ class AbstractConfig(abc.ABC):
identifier: str
__in_shutdown = False # Is the application currently shutting down ?
def __init__(self) -> None:
self.__in_shutdown = False # Is the application currently shutting down ?
self.home = pathlib.Path.home()
def set_shutdown(self):