Pattern: Use of one space before inline comment
Issue: -
Inline comments should have two spaces before them. Often programmers will only include one space, which will trigger this warning.
def print_name(self):
print(self.name) # This comment needs an extra space
def print_name(self):
print(self.name) # Comment is correct now