fix; make python 3.7 happy

………
This commit is contained in:
mathieui 2021-03-26 11:38:03 +01:00
parent 90af21f680
commit 14cbbefdde

View file

@ -735,7 +735,7 @@ firstrun = False
config = Config(Path('/dev/null'))
# The logger object for this module
log: logging.Logger = logging.getLogger(__name__)
log = logging.getLogger(__name__) # type: logging.Logger
# The command-line options
options = None