Skip to content

Commit ec30f52

Browse files
committed
Fix flake8 errors
1 parent 05f6203 commit ec30f52

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

flask_apispec/wrapper.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import flask
1010
import marshmallow as ma
1111
import werkzeug
12-
from six.moves import http_client as http
1312
from webargs import flaskparser
1413

1514
from flask_apispec import utils
@@ -69,7 +68,7 @@ def marshal_result(self, result, status_code):
6968
else:
7069
output = result
7170

72-
return format_response(output) # type: Response
71+
return format_response(output) # type: Response
7372

7473

7574
def identity(value):

0 commit comments

Comments
 (0)