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

coalib/misc/MutableValue.py (1 issue)

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