Conditions | 1 |
Total Lines | 16 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | """ |
||
16 | 1 | def __init__(self, attribute_groep_id: int, attribuut: Attribuut): |
|
17 | """ |
||
18 | Object constructor. |
||
19 | |||
20 | :param int attribute_groep_id: Het ID van deze koppeling. |
||
21 | :param Attribuut attribuut: Het attribuut van deze koppeling. |
||
22 | """ |
||
23 | 1 | self._attribute_groep_id = attribute_groep_id |
|
24 | """ |
||
25 | Het ID van deze attribuutgroepkoppeling. |
||
26 | |||
27 | :type: int |
||
28 | """ |
||
29 | |||
30 | 1 | self._attribuut = attribuut |
|
31 | 1 | """ |
|
32 | Het attribuut van deze koppeling. |
||
50 |