Conditions | 2 |
Total Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
1 | """Contains factory class of process with calls stages.""" |
||
23 | 1 | def _update_structure(self): |
|
|
|||
24 | 1 | if self.structure_type == "linear": |
|
25 | 1 | self.process.add_path(self._stages_to_add) |
|
1 ignored issue
–
show
|
|||
26 | else: |
||
27 | 1 | raise NotImplementedError() |
|
28 | |||
38 |
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.