Pattern: Missing 2 blank lines after end of function or class
Issue: -
Functions and classes should have two blank lines after them, separating them from other functions and classes.
class User(object):
pass
user = User()
class User(object):
pass
user = User()