Remove the plugin __call__ method for properly named run method.

Calls methods are handy, but ugly if you create and then call the object
immediately ( for example, thing()() ).
This commit is contained in:
Mike Auty
2015-10-11 18:12:19 +01:00
parent 97ff228e76
commit 8ddf5c5b45
3 changed files with 4 additions and 6 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ class PluginInterface(validity.ValidityRoutines, metaclass = ABCMeta):
option.validate_input(self.config.get_value(option.name), self.context)
@abstractmethod
def __call__(self):
def run(self):
"""Executes the functionality of the code
@:param