summaryrefslogtreecommitdiffstats
path: root/ranger/config/commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/config/commands.py')
-rwxr-xr-xranger/config/commands.py31
1 files changed, 15 insertions, 16 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py
index b7b02e73..9031e7a2 100755
--- a/ranger/config/commands.py
+++ b/ranger/config/commands.py
@@ -1465,22 +1465,21 @@ class scout(Command):
Multiple flags can be combined. For example, ":scout -gpt" would create
a :filter-like command using globbing.
"""
- # pylint: disable=bad-whitespace
- AUTO_OPEN = 'a'
- OPEN_ON_ENTER = 'e'
- FILTER = 'f'
- SM_GLOB = 'g'
- IGNORE_CASE = 'i'
- KEEP_OPEN = 'k'
- SM_LETTERSKIP = 'l'
- MARK = 'm'
- UNMARK = 'M'
- PERM_FILTER = 'p'
- SM_REGEX = 'r'
- SMART_CASE = 's'
- AS_YOU_TYPE = 't'
- INVERT = 'v'
- # pylint: enable=bad-whitespace
+
+ AUTO_OPEN = "a"
+ OPEN_ON_ENTER = "e"
+ FILTER = "f"
+ SM_GLOB = "g"
+ IGNORE_CASE = "i"
+ KEEP_OPEN = "k"
+ SM_LETTERSKIP = "l"
+ MARK = "m"
+ UNMARK = "M"
+ PERM_FILTER = "p"
+ SM_REGEX = "r"
+ SMART_CASE = "s"
+ AS_YOU_TYPE = "t"
+ INVERT = "v"
def __init__(self, *args, **kwargs):
super(scout, self).__init__(*args, **kwargs)