Pattern: Use of blank line after function decorator
Issue: -
There should be no blank lines between a function decorator and the function it is decorating.
In this example, the property
decorator has a space between it and the name
method. The space should be removed.
class User(object):
@property
def name(self):
pass
class User(object):
@property
def name(self):
pass