Ignore mypy type checking

This commit is contained in:
Hannes Krumbiegel 2023-09-06 13:29:04 +02:00
parent 952ae2c161
commit 30520765bf

View File

@ -21,7 +21,7 @@ try:
from .cli.info import info # noqa: F401 from .cli.info import info # noqa: F401
except ImportError: except ImportError:
def info(*args, **kwargs): def info(*args, **kwargs): # type: ignore
raise RuntimeError("Importing the CLI failed. Info function not available.") raise RuntimeError("Importing the CLI failed. Info function not available.")