examples_for_tests.module1   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 13
dl 0
loc 30
rs 10
c 0
b 0
f 0
wmc 4

2 Functions

Rating   Name   Duplication   Size   Complexity  
A function1() 0 2 1
A _private_function() 0 2 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A Class1.method() 0 2 1
A _PrivateClass._privateMethod() 0 2 1
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