Conditions | 1 |
Total Lines | 14 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 0 |
1 | import abc |
||
13 | def __init__(self, attribute_groep_id: int, attribuut: Attribuut): |
||
14 | """ |
||
15 | Object constructor. |
||
16 | 1 | ||
17 | :param int attribute_groep_id: Het ID van deze koppeling. |
||
18 | :param Attribuut attribuut: Het attribuut van deze koppeling. |
||
19 | """ |
||
20 | self._attribute_groep_id: int = attribute_groep_id |
||
21 | """ |
||
22 | Het ID van deze attribuutgroepkoppeling. |
||
23 | 1 | """ |
|
24 | |||
25 | self._attribuut: Attribuut = attribuut |
||
26 | """ |
||
27 | Het attribuut van deze koppeling. |
||
43 |