PEP8 reformat

This commit is contained in:
Pünkösd Marcell 2020-03-25 01:58:10 +01:00
parent 7118af3c15
commit ba3d4feab5
1 changed files with 0 additions and 3 deletions

View File

@ -4,9 +4,7 @@ from flask import request, current_app, abort
from functools import wraps
def json_required(f):
@wraps(f)
def call(*args, **kwargs):
@ -16,4 +14,3 @@ def json_required(f):
abort(400, "JSON required")
return call