diff --git a/plugins/example_plugin/example_plugin.py b/plugins/example_plugin/example_plugin.py index 0dbef91..9f630c9 100644 --- a/plugins/example_plugin/example_plugin.py +++ b/plugins/example_plugin/example_plugin.py @@ -13,6 +13,8 @@ class ExamplePlugin(XtendRBase): >>> plugin.stop() ExamplePlugin has stopped! """ + self.use_pre_load:bool = False #Indicate that pre-loading isn't neccessary + def run(self, *args, **kwargs): arglen = len(args) keylen = len(kwargs) @@ -31,3 +33,6 @@ class ExamplePlugin(XtendRBase): def stop(self): print("ExamplePlugin has stopped!") + + def pre_load(self): + pass