switched to pylint3 and fixed additional warnings

This commit is contained in:
Markus Lampert
2019-06-30 18:46:31 -07:00
parent 04b4db1d8d
commit f34ac89266
18 changed files with 55 additions and 53 deletions

View File

@@ -58,7 +58,7 @@ class PostProcessor:
exec("reload(%s)" % 'current_post') # pylint: disable=exec-used
except NameError:
# Python 3.4+
from importlib import reload # pylint: disable=redefined-builtin,unused-variable
from importlib import reload # pylint: disable=redefined-builtin,unused-import
exec("reload(%s)" % 'current_post') # pylint: disable=exec-used
sys.path = syspath