Skip to content

Commit

Permalink
Merge branch 'refactor/account-processing' of github.com:StewartW/aws…
Browse files Browse the repository at this point in the history
…-deployment-framework into refactor/account-processing
  • Loading branch information
StewartW committed Nov 17, 2021
2 parents 7495fd3 + 873b7a7 commit 7362272
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def get_support_level(self) -> SupportLevel:
"""
try:
severity_levels = self.client.describe_severity_levels()["severityLevels"]
available_support_codes = [level["code"] for level in severity_levels]
available_support_codes = list(map(lambda s: s["code"], severity_levels))

# See: https://aws.amazon.com/premiumsupport/plans/ for insights into the interpretation of
# the available support codes.
Expand Down
2 changes: 1 addition & 1 deletion src/lambda_codebase/account_processing/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pyyaml>=5.4.1
wrapt==1.12
wrapt==1.12 # https://github.com/aws/aws-lambda-builders/issues/302
aws-xray-sdk==2.8.0

0 comments on commit 7362272

Please sign in to comment.