summary refs log tree commit diff stats
path: root/examples
diff options
context:
space:
mode:
authorstepshal <nessento@openmailbox.org>2016-06-16 18:22:57 +0700
committerstepshal <nessento@openmailbox.org>2016-06-16 18:22:57 +0700
commitab41c7766ced3f1b8f6b4ed317f0db4e0d71b897 (patch)
tree3315bb7587acb020cee88dbc0382d68671d7383e /examples
parent7c760ac0256aa1d27433e8f410ae014be2da2334 (diff)
downloadranger-ab41c7766ced3f1b8f6b4ed317f0db4e0d71b897.tar.gz
Add two blank lines where is expected
Diffstat (limited to 'examples')
-rw-r--r--examples/plugin_chmod_keybindings.py1
-rw-r--r--examples/plugin_file_filter.py2
-rw-r--r--examples/plugin_hello_world.py2
-rw-r--r--examples/plugin_ipc.py2
-rw-r--r--examples/plugin_linemode.py1
-rw-r--r--examples/plugin_new_macro.py2
-rw-r--r--examples/plugin_pmount.py2
7 files changed, 12 insertions, 0 deletions
diff --git a/examples/plugin_chmod_keybindings.py b/examples/plugin_chmod_keybindings.py
index 1c9558f7..63f42b0e 100644
--- a/examples/plugin_chmod_keybindings.py
+++ b/examples/plugin_chmod_keybindings.py
@@ -7,6 +7,7 @@
 import ranger.api
 old_hook_init = ranger.api.hook_init
 
+
 def hook_init(fm):
     old_hook_init(fm)
 
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
diff --git a/examples/plugin_hello_world.py b/examples/plugin_hello_world.py
index b64916d4..0158a653 100644
--- a/examples/plugin_hello_world.py
+++ b/examples/plugin_hello_world.py
@@ -12,6 +12,8 @@ import ranger.api
 old_hook_ready = ranger.api.hook_ready
 
 # Create a replacement for the hook that...
+
+
 def hook_ready(fm):
     # ...does the desired action...
     fm.notify("Hello World")
diff --git a/examples/plugin_ipc.py b/examples/plugin_ipc.py
index a9e79205..cda10c59 100644
--- a/examples/plugin_ipc.py
+++ b/examples/plugin_ipc.py
@@ -10,6 +10,8 @@
 import ranger.api
 
 old_hook_init = ranger.api.hook_init
+
+
 def hook_init(fm):
     try:
         # Create a FIFO.
diff --git a/examples/plugin_linemode.py b/examples/plugin_linemode.py
index 8a92552e..c05ff567 100644
--- a/examples/plugin_linemode.py
+++ b/examples/plugin_linemode.py
@@ -9,6 +9,7 @@ import codecs
 import ranger.api
 from ranger.core.linemode import LinemodeBase
 
+
 @ranger.api.register_linemode
 class MyLinemode(LinemodeBase):
     name = "rot13"
diff --git a/examples/plugin_new_macro.py b/examples/plugin_new_macro.py
index 31350387..8dbe435d 100644
--- a/examples/plugin_new_macro.py
+++ b/examples/plugin_new_macro.py
@@ -10,6 +10,8 @@ old_get_macros = ranger.core.actions.Actions._get_macros
 
 # Define a new macro function
 import time
+
+
 def get_macros_with_date(self):
     macros = old_get_macros(self)
     macros['date'] = time.strftime('%m/%d/%Y')
diff --git a/examples/plugin_pmount.py b/examples/plugin_pmount.py
index 61ee0dbd..ba61b0e5 100644
--- a/examples/plugin_pmount.py
+++ b/examples/plugin_pmount.py
@@ -16,6 +16,8 @@ UMOUNT_KEY = '<alt>M'
 LIST_MOUNTS_KEY = '<alt>N'
 
 old_hook_init = ranger.api.hook_init
+
+
 def hook_init(fm):
     try:
         fm.execute_console("map {key} shell -p lsblk".format(key=LIST_MOUNTS_KEY))