about summary refs log tree commit diff stats
path: root/examples/plugin_file_filter.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/plugin_file_filter.py')
-rw-r--r--examples/plugin_file_filter.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/plugin_file_filter.py b/examples/plugin_file_filter.py
index d5ea2d2d..5d5f1466 100644
--- a/examples/plugin_file_filter.py
+++ b/examples/plugin_file_filter.py
@@ -10,6 +10,8 @@ old_accept_file = ranger.container.directory.accept_file
 HIDE_FILES = ("/boot", "/sbin", "/proc", "/sys")
 
 # Define a new one
+
+
 def custom_accept_file(file, filters):
     if not file.fm.settings.show_hidden and file.path in HIDE_FILES:
         return False