about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2022-02-05 16:01:41 +0100
committertoonn <toonn@toonn.io>2022-02-05 16:01:41 +0100
commitaa98a9a39eb2c5df10bb19b94ade3a98863470c4 (patch)
treeaeda9c806da029f91f9464c2ac13753e0f99a387
parent6c21d145298da1e5a05bb220d1a3c1973ebefac3 (diff)
downloadranger-aa98a9a39eb2c5df10bb19b94ade3a98863470c4.tar.gz
tags: Drop Pylint option that disappeared
-rw-r--r--ranger/container/tags.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/ranger/container/tags.py b/ranger/container/tags.py
index 4d4e6c59..e1ceec6f 100644
--- a/ranger/container/tags.py
+++ b/ranger/container/tags.py
@@ -123,7 +123,6 @@ class Tags(FileManagerAware):
             elif path.startswith(path_old + sep):
                 pnew = path_new + path[len(path_old):]
             if pnew:
-                # pylint: disable=unnecessary-dict-index-lookup
                 del self.tags[path]
                 self.tags[pnew] = tag
                 changed = True