about summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2022-02-05 19:29:54 +0100
committertoonn <toonn@toonn.io>2022-02-05 19:29:54 +0100
commita9f3980ff17a905791e78c1c47b263ca41f14c0c (patch)
tree8be7ae1d9f5aceb09afb74bd27e02d050a68483c /ranger
parentb17781fb22462d117d6a6336ac112321c5803e9e (diff)
downloadranger-a9f3980ff17a905791e78c1c47b263ca41f14c0c.tar.gz
Revert "popen_forked: Drop disappeared Pylint options"
This reverts commit 90380564ca41429771441f1e3cb3cc606ca5e101.
Diffstat (limited to 'ranger')
-rw-r--r--ranger/ext/popen_forked.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/ext/popen_forked.py b/ranger/ext/popen_forked.py
index 46054e9c..40a5b833 100644
--- a/ranger/ext/popen_forked.py
+++ b/ranger/ext/popen_forked.py
@@ -24,7 +24,7 @@ def Popen_forked(*args, **kwargs):  # pylint: disable=invalid-name
         ) as null_w:
             kwargs['stdin'] = null_r
             kwargs['stdout'] = kwargs['stderr'] = null_w
-            Popen(*args, **kwargs)
+            Popen(*args, **kwargs)  # pylint: disable=consider-using-with
         os._exit(0)  # pylint: disable=protected-access
     else:
         os.wait()
a id='n125' href='#n125'>125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241