From b3d031a913814900467358b2adf20a148bf6de1a Mon Sep 17 00:00:00 2001 From: nfnty Date: Wed, 21 Dec 2016 05:06:55 +0100 Subject: linting: pylint and flake8 --- examples/plugin_hello_world.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'examples/plugin_hello_world.py') diff --git a/examples/plugin_hello_world.py b/examples/plugin_hello_world.py index 0158a653..dc4c3fee 100644 --- a/examples/plugin_hello_world.py +++ b/examples/plugin_hello_world.py @@ -9,7 +9,7 @@ import ranger.api # Save the previously existing hook, because maybe another module already # extended that hook and we don't want to lose it: -old_hook_ready = ranger.api.hook_ready +HOOK_READY_OLD = ranger.api.hook_ready # Create a replacement for the hook that... @@ -19,7 +19,8 @@ def hook_ready(fm): fm.notify("Hello World") # ...and calls the saved hook. If you don't care about the return value, # simply return the return value of the previous hook to be safe. - return old_hook_ready(fm) + return HOOK_READY_OLD(fm) + # Finally, "monkey patch" the existing hook_ready function with our replacement: ranger.api.hook_ready = hook_ready -- cgit 1.4.1-2-gfad0