diff options
author | hut <hut@hut.pm> | 2017-12-25 18:37:34 +0100 |
---|---|---|
committer | hut <hut@hut.pm> | 2017-12-25 18:37:34 +0100 |
commit | e9f00850500712b6e905dc3d2392cc329f97cae3 (patch) | |
tree | 11f160debb347b00880c652c494d5f67807a5fa3 | |
parent | 23c657263099a2a0148e62805d2810bf44b01a23 (diff) | |
download | ranger-e9f00850500712b6e905dc3d2392cc329f97cae3.tar.gz |
config.commands: fix pylint directive
-rwxr-xr-x | ranger/config/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index efbfd774..df8022cf 100755 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -892,7 +892,7 @@ class eval_(Command): def execute(self): # The import is needed so eval() can access the ranger module - import ranger # NOQA pylint: disable=unused-import + import ranger # NOQA pylint: disable=unused-import,unused-variable if self.arg(1) == '-q': code = self.rest(2) quiet = True |