chg: Make mypy happy

pull/197/head
Raphaël Vinot 2021-04-09 14:48:42 +02:00
parent dcc7cd1351
commit d7665e0a5e
1 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,8 @@ from .helpers import long_sleep, shutdown_requested, set_running, unset_running
class AbstractManager(ABC):
script_name: str
def __init__(self, loglevel: int=logging.DEBUG):
self.loglevel = loglevel
self.logger = logging.getLogger(f'{self.__class__.__name__}')