diff options
author | toonn <toonn@toonn.io> | 2021-08-08 19:46:59 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2021-08-08 19:46:59 +0200 |
commit | 6ec2a60b042480b848f405a89f01ec70abe22a3b (patch) | |
tree | b38adb4c747e53d53ae4f6ee058761b669050ece | |
parent | 056f6895d403a98c78047f5ded48984864ed02aa (diff) | |
download | ranger-6ec2a60b042480b848f405a89f01ec70abe22a3b.tar.gz |
popen_forked: Satisfy PEP8
-rw-r--r-- | ranger/ext/popen_forked.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ranger/ext/popen_forked.py b/ranger/ext/popen_forked.py index f10ca1ad..4b171286 100644 --- a/ranger/ext/popen_forked.py +++ b/ranger/ext/popen_forked.py @@ -6,6 +6,7 @@ from __future__ import (absolute_import, division, print_function) import os from subprocess import Popen + def Popen_forked(*args, **kwargs): # pylint: disable=invalid-name """Forks process and runs Popen with the given args and kwargs. |