SubTestBear   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __init__() 0 2 1
A origin() 0 2 1
A kind() 0 3 1
1
from bear1 import TestBear as ImportedTestBear
2
3
4
class SubTestBear(ImportedTestBear):
5
6
    def __init__(self):
7
        ImportedTestBear.__init__(self)
8
9
    @staticmethod
10
    def kind():
11
        return "kind"
12
13
    def origin(self):
14
        return __file__
15