diff --git a/EDMC.py b/EDMC.py index a237f4ea..39d98982 100755 --- a/EDMC.py +++ b/EDMC.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# flake8: noqa TAE001 """ EDMC.py - Command-line interface. Requires prior setup through the GUI. @@ -27,7 +26,7 @@ from EDMCLogging import edmclogger, logger, logging if TYPE_CHECKING: from logging import TRACE # type: ignore # noqa: F401 # needed to make mypy happy - def _(x): return x + def _(x: str): return x edmclogger.set_channels_loglevel(logging.INFO)