Pattern: Indentation is not a multiple of four
Issue: -
PEP8 recommends that Python code indentation be a multiple of four.
class User(object):
def __init__(self, name):
self.name = name
class User(object):
def __init__(self, name):
self.name = name