Skip to content
Snippets Groups Projects
Commit 5366c20f authored by Alán Muñoz's avatar Alán Muñoz
Browse files

tweak(abc): warn -> warning due to depr

parent 63275819
No related branches found
No related tags found
No related merge requests found
......@@ -202,7 +202,7 @@ class ProcessABC(ABC):
def run(self):
pass
def _log(self, message: str, level: str = "warn"):
def _log(self, message: str, level: str = "warning"):
# Log messages in the corresponding level
logger = logging.getLogger("aliby")
getattr(logger, level)(f"{self.__class__.__name__}: {message}")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment