mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-18 18:07:37 +03:00
Fixed unquoted LoggerMixin cast
This commit is contained in:
parent
e7ece1ea52
commit
374d96e767
@ -469,7 +469,7 @@ def get_main_logger() -> 'LoggerMixin':
|
|||||||
return cast('LoggerMixin', logging.getLogger(appname))
|
return cast('LoggerMixin', logging.getLogger(appname))
|
||||||
else:
|
else:
|
||||||
# Must be the CLI
|
# Must be the CLI
|
||||||
return cast(LoggerMixin, logging.getLogger(appcmdname))
|
return cast('LoggerMixin', logging.getLogger(appcmdname))
|
||||||
|
|
||||||
|
|
||||||
# Singleton
|
# Singleton
|
||||||
|
Loading…
x
Reference in New Issue
Block a user