Skip to content

Commit

Permalink
Fixed the coding style errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jkozlowicz committed Jun 6, 2016
1 parent bd25c5c commit bfc68da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion connexion/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"""

import copy
import json
import logging
import pathlib
import sys
Expand Down
3 changes: 2 additions & 1 deletion tests/api/test_bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ def test_no_swagger_json_api(simple_api_spec_dir):
def test_swagger_json_content_type(simple_app):
app_client = simple_app.app.test_client()

response = app_client.get('/v1.0/swagger.json', data={}) # type: flask.Response
response = app_client.get('/v1.0/swagger.json',
data={}) # type: flask.Response
assert response.status_code == 200
assert response.content_type == 'application/json'

Expand Down

0 comments on commit bfc68da

Please sign in to comment.