Skip to content

Commit

Permalink
Fix py37 test
Browse files Browse the repository at this point in the history
  • Loading branch information
axnsan12 committed Jan 14, 2019
1 parent 7624672 commit 8e2228f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions testproj/testproj/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,24 +116,24 @@
'type': 'basic'
},
'Bearer': {
'type': 'apiKey',
'in': 'header',
'name': 'Authorization',
'in': 'header'
},
'Query': {
'type': 'apiKey',
'name': 'auth',
'in': 'query'
},
'OAuth2 password': {
'type': 'oauth2',
'flow': 'password',
'tokenUrl': OAUTH2_TOKEN_URL,
'scopes': {
'read': 'Read everything.',
'write': 'Write everything,',
}
}
},
'tokenUrl': OAUTH2_TOKEN_URL,
'type': 'oauth2',
},
'Query': {
'in': 'query',
'name': 'auth',
'type': 'apiKey',
},
},
'OAUTH2_REDIRECT_URL': OAUTH2_REDIRECT_URL,
'OAUTH2_CONFIG': {
Expand Down

0 comments on commit 8e2228f

Please sign in to comment.