diff --git a/bootstrap_cfn/config.py b/bootstrap_cfn/config.py index 86cacce..afc0f01 100644 --- a/bootstrap_cfn/config.py +++ b/bootstrap_cfn/config.py @@ -1141,7 +1141,7 @@ def _get_manual_ssl_certificate(self, certificate_name): @classmethod def _find_resources(cls, template, resource_type): - f = lambda x: x.resource_type == resource_type + def f(x): return (x.resource_type == resource_type) return filter(f, template.resources.values()) @classmethod