Pattern: Missing whitespace for block comment
Issue: -
Block comments should have one space before the pound sign (#
) and the comment itself.
#This comment needs a space
def print_name(self):
print(self.name)
# Comment is correct now
def print_name(self):
print(self.name)