1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-12 15:27:14 +03:00

[Minor] Update Type Hint

This commit is contained in:
David Sangrey 2024-01-05 15:35:25 -05:00
parent 48311ae70c
commit 29c4bd4028
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC

View File

@ -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)