diff options
author | toonn <toonn@toonn.io> | 2019-12-30 21:16:00 +0100 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2019-12-30 21:16:00 +0100 |
commit | 1300d2f3491739538e2b52478cfdcb0660c9b913 (patch) | |
tree | 47170540a293173df260d30501af8d3fcf086564 | |
parent | fda66502ef81af282b0c576f7aeb13eb95e4bf68 (diff) | |
download | ranger-1300d2f3491739538e2b52478cfdcb0660c9b913.tar.gz |
Fix keyword argument assignment whitespace
-rw-r--r-- | ranger/core/filter_stack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/core/filter_stack.py b/ranger/core/filter_stack.py index 59495437..bd63f2fe 100644 --- a/ranger/core/filter_stack.py +++ b/ranger/core/filter_stack.py @@ -76,7 +76,7 @@ class MimeFilter(BaseFilter): @stack_filter("hash") class HashFilter(BaseFilter, FileManagerAware): - def __init__(self, filepath = None): + def __init__(self, filepath=None): if filepath is None: self.filepath = self.fm.thisfile.path else: |