aboutsummaryrefslogtreecommitdiff
path: root/src/mlia/cli/logging.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mlia/cli/logging.py')
-rw-r--r--src/mlia/cli/logging.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mlia/cli/logging.py b/src/mlia/cli/logging.py
index 40f47d3..e786394 100644
--- a/src/mlia/cli/logging.py
+++ b/src/mlia/cli/logging.py
@@ -31,10 +31,10 @@ def setup_logging(
:param verbose: enable extended logging for the tools loggers
:param log_filename: name of the log file in the logs directory
"""
- mlia_logger, *tools_loggers = [
+ mlia_logger, *tools_loggers = (
logging.getLogger(logger_name)
for logger_name in ["mlia", "tensorflow", "py.warnings"]
- ]
+ )
# enable debug output, actual message filtering depends on
# the provided parameters and being done on the handlers level