Conditions | 1 |
Total Lines | 11 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 0 |
1 | """ |
||
16 | 1 | def tel(self, diagnose_attribuut_code: str, subtraject: Subtraject) -> int: |
|
17 | """ |
||
18 | Geeft het aantal malen (d.w.z. 0 of 1) dat een subtraject voldoet aan een een |
||
19 | (specialismecode, diagnosecode) combinatie. |
||
20 | |||
21 | :param str diagnose_attribuut_code: De attribuutcode voor (specialismecode, diagnosecode) combinatie. |
||
22 | :param Subtraject subtraject: Het subtraject. |
||
23 | |||
24 | :rtype: int |
||
25 | """ |
||
26 | 1 | return subtraject.telling_diagnose_attribuut(diagnose_attribuut_code) |
|
27 | |||
29 |