Failed Conditions
Pull Request — master (#2076)
by Abdeali
02:04
created

MutableValue   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %
Metric Value
dl 0
loc 4
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __init__() 0 2 1
1
class MutableValue:
2
3
    def __init__(self, val=None):
4
        self.value = val
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable val does not seem to be defined.
Loading history...
5