Skip to content

Commit f3f2539

Browse files
committed
Fix typo
1 parent cc3c844 commit f3f2539

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flask_apispec/wrapper.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ def __call__(self, *args, **kwargs):
3636
return response
3737
rv, status_code, headers = unpack(response)
3838
mv = self.marshal_result(rv, status_code)
39-
resposne = packed(mv, status_code, headers)
40-
return flask.current_app.make_response(resposne)
39+
response = packed(mv, status_code, headers)
40+
return flask.current_app.make_response(response)
4141

4242
def call_view(self, *args, **kwargs):
4343
config = flask.current_app.config
@@ -100,4 +100,4 @@ def packed(data, status_code, headers):
100100
resp += (status_code, )
101101
if headers:
102102
resp += (headers, )
103-
return resp
103+
return resp

0 commit comments

Comments
 (0)