Total Complexity | 4 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | ATTR1 = 42 |
||
2 | _PRIVATE_ATTR = 42 |
||
3 | |||
4 | |||
5 | class PublicClass: |
||
6 | def _privateMethod(self): |
||
7 | raise NotImplementedError |
||
8 | |||
9 | |||
10 | class _PrivateClass: |
||
11 | def _privateMethod(self): |
||
12 | raise NotImplementedError |
||
13 | |||
14 | |||
15 | def public_function(x: float, y: int) -> int: |
||
16 | raise NotImplementedError |
||
17 | |||
18 | |||
19 | def _private_function(x: int, y: float) -> str: |
||
20 | raise NotImplementedError |
||
21 | |||
22 |