From 0eb77e4e8b0f7022d948f380e24e0adbbb14cbf7 Mon Sep 17 00:00:00 2001 From: Augustin Trancart Date: Sun, 9 Feb 2020 20:32:53 +0100 Subject: [PATCH] Fix linter --- moulinette/utils/log.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/moulinette/utils/log.py b/moulinette/utils/log.py index 16a3fc23..b793a2bc 100644 --- a/moulinette/utils/log.py +++ b/moulinette/utils/log.py @@ -3,12 +3,12 @@ import logging # import all constants because other modules try to import them from this # module because SUCCESS is defined in this module -from logging import ( +from logging import ( # noqa: F401 addLevelName, setLoggerClass, Logger, getLogger, - NOTSET, # noqa + NOTSET, DEBUG, INFO, WARNING,