C0111 (missing-docstring) Number of occurrences: 3
"""YOUR DOCSTRING HERE"""
1 class Assigning():
2 def __init__(self, value, name):
1 class Assigning():
"""YOUR DOCSTRING HERE"""
2 def __init__(self, value, name):
3 self.value = value
6 def new_attr(self, newvalue, newname):
"""YOUR DOCSTRING HERE"""
7 # wrong approach
8 self = newvalue # Error on this line
E9990 (assigning-to-self) Number of occurrences: 1
6 def new_attr(self, newvalue, newname):
7 # wrong approach
8 self = newvalue # Error on this line
9 # correct approach