Total Complexity | 4 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | |||
2 | |||
3 | """ |
||
4 | |||
5 | Lets put some |
||
6 | comments for ATTR1 here |
||
7 | |||
8 | with multiple lines... |
||
9 | """ |
||
10 | ATTR1 : int = 42 # And some more comments here... |
||
11 | _PRIVATE_ATTR = 42 |
||
12 | |||
13 | |||
14 | class Class1(str): |
||
15 | def method(self): |
||
16 | raise NotImplementedError |
||
17 | |||
18 | |||
19 | class _PrivateClass: |
||
20 | def _privateMethod(self): |
||
21 | raise NotImplementedError |
||
22 | |||
23 | |||
24 | def _private_function(): |
||
25 | raise NotImplementedError |
||
26 | |||
27 | |||
28 | def function1(): |
||
29 | raise NotImplementedError |
||
30 |