Conditions | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | class Action(): |
||
54 | def run(self, obj, context, synergy_manager): |
||
55 | """ |
||
56 | |||
57 | The execution code of ``Action`` have to be write in ``run`` method. |
||
58 | |||
59 | :param obj: The synergy concerned object |
||
60 | :param context: The Context |
||
61 | :param synergy_manager: SynergyObjectManager |
||
62 | :return: |
||
63 | """ |
||
64 | raise NotImplementedError |