_PrivateClass._privateMethod()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 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