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