X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_common%2Ftemporal%2Fworkflows%2Fbase.py;h=d5d22bfb7e827897a0e725e1bd2e69756b8e9a8c;hb=e56853bb52d463573442303231094c1d109027f5;hp=44b73be7f0ae316d79b8c9c2243c52b604f9d968;hpb=989602b0ef620c0b310d9dd4adeb9f387ca35023;p=osm%2Fcommon.git diff --git a/osm_common/temporal/workflows/base.py b/osm_common/temporal/workflows/base.py index 44b73be..d5d22bf 100644 --- a/osm_common/temporal/workflows/base.py +++ b/osm_common/temporal/workflows/base.py @@ -17,8 +17,9 @@ from abc import ABC import logging +from logging import Logger class BaseWorkflow(ABC): def __init__(self): - self.logger = logging.getLogger(f"lcm.wfl.{self.__class__.__name__}") + self.logger: Logger = logging.getLogger(f"lcm.wfl.{self.__class__.__name__}")