From 742d02c05890c9d2477cad6138853088a28a83e8 Mon Sep 17 00:00:00 2001 From: toonn Date: Sat, 5 Feb 2022 16:11:01 +0100 Subject: rifle: Drop disappeared Pylint options --- ranger/ext/rifle.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'ranger') diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py index fbfe7c5a..53800ed6 100755 --- a/ranger/ext/rifle.py +++ b/ranger/ext/rifle.py @@ -141,13 +141,12 @@ except ImportError: return False if pid == 0: os.setsid() - # pylint: disable=unspecified-encoding with open(os.devnull, "r") as null_r, open( os.devnull, "w" ) as null_w: kwargs["stdin"] = null_r kwargs["stdout"] = kwargs["stderr"] = null_w - Popen(*args, **kwargs) # pylint: disable=consider-using-with + Popen(*args, **kwargs) os._exit(0) # pylint: disable=protected-access return True @@ -224,7 +223,6 @@ class Rifle(object): # pylint: disable=too-many-instance-attributes """Replace the current configuration with the one in config_file""" if config_file is None: config_file = self.config_file - # pylint: disable=unspecified-encoding with open(config_file, "r") as fobj: self.rules = [] for line in fobj: -- cgit 1.4.1-2-gfad0