Skip to content

Commit

Permalink
Merge branch 'main' into remove-npm-install-and-package-lock
Browse files Browse the repository at this point in the history
  • Loading branch information
rogebrd authored Feb 9, 2022
2 parents 49e5c36 + cc10efb commit f516544
Show file tree
Hide file tree
Showing 18 changed files with 2,068 additions and 846 deletions.
6 changes: 3 additions & 3 deletions dropbox/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
SetProfilePhotoArg_validator,
SetProfilePhotoResult_validator,
SetProfilePhotoError_validator,
{'auth': u'user',
'host': u'api',
'style': u'rpc'},
{'auth': 'user',
'host': 'api',
'style': 'rpc'},
)

ROUTES = {
Expand Down
12 changes: 6 additions & 6 deletions dropbox/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -679,9 +679,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
TokenFromOAuth1Arg_validator,
TokenFromOAuth1Result_validator,
TokenFromOAuth1Error_validator,
{'auth': u'app',
'host': u'api',
'style': u'rpc'},
{'auth': 'app',
'host': 'api',
'style': 'rpc'},
)
token_revoke = bb.Route(
'token/revoke',
Expand All @@ -690,9 +690,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
bv.Void(),
bv.Void(),
bv.Void(),
{'auth': u'user',
'host': u'api',
'style': u'rpc'},
{'auth': 'user',
'host': 'api',
'style': 'rpc'},
)

ROUTES = {
Expand Down
Loading

0 comments on commit f516544

Please sign in to comment.