| Conditions | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | class Action(): |
||
| 41 | @classmethod |
||
| 42 | def cycle_pre_run(cls, context, synergy_manager): |
||
| 43 | """ |
||
| 44 | |||
| 45 | This class method will be executed each cycle, one time by action class. |
||
| 46 | Useful fo apply some tricks before this synergies objects action. |
||
| 47 | |||
| 48 | :param context: |
||
| 49 | :param synergy_manager: |
||
| 50 | :return: |
||
| 51 | """ |
||
| 52 | pass |
||
| 53 | |||
| 64 | raise NotImplementedError |