1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 07:47:14 +03:00

Fixed unquoted LoggerMixin cast

This commit is contained in:
A_D 2020-12-30 20:58:52 +02:00 committed by Athanasius
parent e7ece1ea52
commit 374d96e767

View File

@ -469,7 +469,7 @@ def get_main_logger() -> 'LoggerMixin':
return cast('LoggerMixin', logging.getLogger(appname))
else:
# Must be the CLI
return cast(LoggerMixin, logging.getLogger(appcmdname))
return cast('LoggerMixin', logging.getLogger(appcmdname))
# Singleton