More linting.

This commit is contained in:
Steve Pulec 2019-11-22 09:39:07 -05:00
commit a9fe5d462c
5 changed files with 5 additions and 15 deletions

View file

@ -177,9 +177,7 @@ class CloudFormationResponse(BaseResponse):
start = stack_ids.index(token) + 1
else:
start = 0
max_results = (
50
) # using this to mske testing of paginated stacks more convenient than default 1 MB
max_results = 50 # using this to mske testing of paginated stacks more convenient than default 1 MB
stacks_resp = stacks[start : start + max_results]
next_token = None
if len(stacks) > (start + max_results):