More linting.
This commit is contained in:
parent
72da9e96c2
commit
a9fe5d462c
5 changed files with 5 additions and 15 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue