verboselib.cli.lang   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A classproperty_readonly.__get__() 0 2 1
1
class classproperty_readonly(property):
2
  def __get__(self, obj, objtype=None):
3
    return super().__get__(objtype)
4