Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
pep8 fix to relace lambda function
Browse files Browse the repository at this point in the history
  • Loading branch information
Niall Creech committed Feb 10, 2017
1 parent c91f131 commit c89708a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap_cfn/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c89708a

Please sign in to comment.