diff options
author | toonn <toonn@toonn.io> | 2022-02-05 16:10:24 +0100 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2022-02-05 16:10:24 +0100 |
commit | 7ae3f6e2ed2ff6648f4a13d276b6e6b586592720 (patch) | |
tree | 3dbd93eacf4e82ffd83a6905ff8cb36e67727c01 | |
parent | 05af3b99d87ade639cfb8dd33acda9c76d5e93e5 (diff) | |
download | ranger-7ae3f6e2ed2ff6648f4a13d276b6e6b586592720.tar.gz |
img_display: Drop disappeared Pylint options
-rw-r--r-- | ranger/ext/img_display.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ranger/ext/img_display.py b/ranger/ext/img_display.py index 43e4203d..97b8f43f 100644 --- a/ranger/ext/img_display.py +++ b/ranger/ext/img_display.py @@ -143,7 +143,6 @@ class W3MImageDisplayer(ImageDisplayer, FileManagerAware): self.binary_path = None self.binary_path = self._find_w3mimgdisplay_executable() # may crash # We cannot close the process because that stops the preview. - # pylint: disable=consider-using-with self.process = Popen([self.binary_path] + W3MIMGDISPLAY_OPTIONS, cwd=self.working_dir, stdin=PIPE, stdout=PIPE, universal_newlines=True) self.is_initialized = True @@ -745,7 +744,6 @@ class UeberzugImageDisplayer(ImageDisplayer): return # We cannot close the process because that stops the preview. - # pylint: disable=consider-using-with self.process = Popen(['ueberzug', 'layer', '--silent'], cwd=self.working_dir, stdin=PIPE, universal_newlines=True) self.is_initialized = True |