| Conditions | 1 |
| Total Lines | 12 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 1 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | from kerapu.boom.boom_parameter.BoomParameter import BoomParameter |
||
| 13 | def __init__(self, weeg_factor_nummer: int): |
||
| 14 | """ |
||
| 15 | Object contructor. |
||
| 16 | 1 | ||
| 17 | :param int weeg_factor_nummer: Weegfactornummer: |
||
| 18 | |||
| 19 | * 0: geen weegfactor |
||
| 20 | * 1: weegfactor 1 |
||
| 21 | * 2: weegfactor 2 |
||
| 22 | """ |
||
| 23 | self._weeg_factor_nummer: int = weeg_factor_nummer |
||
| 24 | """ |
||
| 25 | Weegfactornummer |
||
| 42 |