Skip to content

Commit cc10efb

Browse files
authored
Automated Spec Update (dropbox#412)
Change Notes: files Namespace - Add MoveIntoFamilyError unions - Add payload_too_large and cant_move_into_family errors sharing_files Namespace - doc update team_log_generated Namespace - Add DataResidencyMigrationRequestSuccessfulDetails, DataResidencyMigrationRequestUnsuccessfulDetails, DataResidencyMigrationRequestSuccessfulType, DataResidencyMigrationRequestUnsuccessfulType structs - Update ExtendedVersionHistoryPolicy union to include default - Update Examples Team Policies Namespace: - Update ExternalDriveBackupPolicyState union to include default
1 parent 09d9ef7 commit cc10efb

17 files changed

+2067
-845
lines changed

dropbox/account.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
248248
SetProfilePhotoArg_validator,
249249
SetProfilePhotoResult_validator,
250250
SetProfilePhotoError_validator,
251-
{'auth': u'user',
252-
'host': u'api',
253-
'style': u'rpc'},
251+
{'auth': 'user',
252+
'host': 'api',
253+
'style': 'rpc'},
254254
)
255255

256256
ROUTES = {

dropbox/auth.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -679,9 +679,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
679679
TokenFromOAuth1Arg_validator,
680680
TokenFromOAuth1Result_validator,
681681
TokenFromOAuth1Error_validator,
682-
{'auth': u'app',
683-
'host': u'api',
684-
'style': u'rpc'},
682+
{'auth': 'app',
683+
'host': 'api',
684+
'style': 'rpc'},
685685
)
686686
token_revoke = bb.Route(
687687
'token/revoke',
@@ -690,9 +690,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
690690
bv.Void(),
691691
bv.Void(),
692692
bv.Void(),
693-
{'auth': u'user',
694-
'host': u'api',
695-
'style': u'rpc'},
693+
{'auth': 'user',
694+
'host': 'api',
695+
'style': 'rpc'},
696696
)
697697

698698
ROUTES = {

0 commit comments

Comments
 (0)