Conditions | 1 |
Total Lines | 8 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1 |
Changes | 0 |
1 | from kerapu import clean_code, LEN_ZORG_INSTELLING_CODE |
||
10 | def __init__(self, zorg_instelling_code: str): |
||
11 | """ |
||
12 | Object constructor. |
||
13 | 1 | ||
14 | :param str zorg_instelling_code: De code van deze zorginstelling. |
||
15 | """ |
||
16 | self.__zorg_instelling_code: str = clean_code(zorg_instelling_code, LEN_ZORG_INSTELLING_CODE) |
||
17 | """ |
||
18 | De code van deze zorginstelling. |
||
34 |