about summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2022-02-05 16:11:18 +0100
committertoonn <toonn@toonn.io>2022-02-05 16:11:18 +0100
commit8b462b245399af66bb2b7dd31ed360548804416b (patch)
tree302365761a7ed50dabc3891210961697d54b6bd5 /ranger
parent742d02c05890c9d2477cad6138853088a28a83e8 (diff)
downloadranger-8b462b245399af66bb2b7dd31ed360548804416b.tar.gz
vcs: Drop disappeared Pylint options
Diffstat (limited to 'ranger')
-rw-r--r--ranger/ext/vcs/vcs.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/ranger/ext/vcs/vcs.py b/ranger/ext/vcs/vcs.py
index 5619ed19..455bd175 100644
--- a/ranger/ext/vcs/vcs.py
+++ b/ranger/ext/vcs/vcs.py
@@ -88,7 +88,6 @@ class Vcs(object):  # pylint: disable=too-many-instance-attributes
         if self.root:
             if self.is_root:
                 self.rootvcs = self
-                # pylint: disable=invalid-class-object
                 self.__class__ = globals()[self.REPOTYPES[self.repotype]['class'] + 'Root']
 
                 if not os.access(self.repodir, os.R_OK):
@@ -102,7 +101,6 @@ class Vcs(object):  # pylint: disable=too-many-instance-attributes
                 if self.rootvcs is None or self.rootvcs.root is None:
                     return
                 self.rootvcs.links |= self.links
-                # pylint: disable=invalid-class-object
                 self.__class__ = globals()[self.REPOTYPES[self.repotype]['class']]
                 self.track = self.rootvcs.track