| Conditions | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | """Contains factory class of process with calls stages.""" |
||
| 17 | 1 | def __init__(self, structure_type, how_many_nodes, max_calls): |
|
| 18 | """Constructor.""" |
||
| 19 | 1 | self.max_calls = max_calls |
|
| 20 | 1 | self._stages_to_add = [] |
|
| 21 | 1 | self.structure_type = structure_type |
|
| 22 | 1 | self.how_many_nodes = how_many_nodes |
|
| 23 | 1 | self.process = CallsProcess() |
|
| 24 | |||
| 42 |