classproperty_readonly.__get__()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nop 3
1
class classproperty_readonly(property):
2
  def __get__(self, obj, objtype=None):
3
    return super().__get__(objtype)
4