🎨 fix style warning, sigh

This commit is contained in:
chfw 2018-11-06 18:25:15 +00:00
parent a7a9f34880
commit 4cdfdd3b99
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def do_import(plugin_module_name):
if PY36:
try:
return _do_import(plugin_module_name)
except (ImportError, ModuleNotFoundError):
except (ImportError, ModuleNotFoundError): # noqa: F821
log.exception("failed to import %s", plugin_module_name)
else:
try: