fix; make python 3.7 happy
………
This commit is contained in:
parent
90af21f680
commit
14cbbefdde
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue