summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@hut.pm>2017-12-25 18:37:34 +0100
committerhut <hut@hut.pm>2017-12-25 18:37:34 +0100
commite9f00850500712b6e905dc3d2392cc329f97cae3 (patch)
tree11f160debb347b00880c652c494d5f67807a5fa3
parent23c657263099a2a0148e62805d2810bf44b01a23 (diff)
downloadranger-e9f00850500712b6e905dc3d2392cc329f97cae3.tar.gz
config.commands: fix pylint directive
-rwxr-xr-xranger/config/commands.py2
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