requested changes from review

This commit is contained in:
Brandon Bradley 2020-02-01 14:52:48 -06:00
commit 800e5ab7d2
2 changed files with 2 additions and 2 deletions

View file

@ -678,7 +678,7 @@ class CloudFormationBackend(BaseBackend):
def list_stack_resources(self, stack_name_or_id):
stack = self.get_stack(stack_name_or_id)
if stack is None:
return []
return None
return stack.stack_resources
def delete_stack(self, name_or_stack_id):