summary refs log tree commit diff stats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/plugin_ipc.py1
-rw-r--r--examples/plugin_linemode.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/examples/plugin_ipc.py b/examples/plugin_ipc.py
index a9e79205..cfb546fa 100644
--- a/examples/plugin_ipc.py
+++ b/examples/plugin_ipc.py
@@ -22,6 +22,7 @@ def hook_init(fm):
             import thread
         except ImportError:
             import _thread as thread
+
         def ipc_reader(filepath):
             while True:
                 with open(filepath, 'r') as fifo:
diff --git a/examples/plugin_linemode.py b/examples/plugin_linemode.py
index 8a92552e..be34e6c5 100644
--- a/examples/plugin_linemode.py
+++ b/examples/plugin_linemode.py
@@ -12,5 +12,6 @@ from ranger.core.linemode import LinemodeBase
 @ranger.api.register_linemode
 class MyLinemode(LinemodeBase):
     name = "rot13"
+
     def filetitle(self, file, metadata):
         return codecs.encode(file.relative_path, "rot_13")
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196