Update responses.py

Add a dummy NextToken to sns.list_platform_applications. Ideally the library would actually paginate, but this should be an alright change in the mean time.
This commit is contained in:
Tin Tvrtković 2015-03-26 16:24:48 +01:00
parent f764440ff8
commit 8327055239

View File

@ -250,7 +250,8 @@ class SNSResponse(BaseResponse):
"PlatformApplications": [{
"PlatformApplicationArn": application.arn,
"attributes": application.attributes,
} for application in applications]
} for application in applications],
"NextToken": None
},
"ResponseMetadata": {
"RequestId": "384ac68d-3775-11df-8963-01868b7c937c",