| Conditions | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | from synergine.core.exception.NotFoundError import NotFoundError |
||
| 17 | def __init__(self, config, context, synergy_manager): |
||
| 18 | """ |
||
| 19 | |||
| 20 | :param config: ConfigurationManager |
||
| 21 | :return: void |
||
| 22 | """ |
||
| 23 | self._encapsuled_run = False |
||
| 24 | self._config = config |
||
| 25 | self._context = context |
||
| 26 | self._synergy_manager = synergy_manager |
||
| 27 | |||
| 77 |