Lint: E306 expected 1 blank line before a nested definition, found 0

This commit is contained in:
2020-11-07 12:17:38 -05:00
parent 4a5d50d0e6
commit 39cc992e9b
2 changed files with 3 additions and 1 deletions

View File

@ -149,6 +149,7 @@ class RequestParser(object):
def __call__(self, function):
if not callable(function):
return
@wraps(function)
def wrapped_function(*args, **kwargs):
parser = reqparse.RequestParser()