Skip to content

Commit 82d5467

Browse files
authored
fix lint (#96)
1 parent c4aa843 commit 82d5467

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

datadog_lambda/metric.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,7 @@ def submit_errors_metric(lambda_context):
145145
)["SecretString"]
146146
elif DD_API_KEY_SSM_NAME:
147147
api._api_key = boto3.client("ssm").get_parameter(
148-
Name=DD_API_KEY_SSM_NAME,
149-
WithDecryption=True
148+
Name=DD_API_KEY_SSM_NAME, WithDecryption=True
150149
)["Parameter"]["Value"]
151150
elif DD_KMS_API_KEY:
152151
api._api_key = boto3.client("kms").decrypt(

0 commit comments

Comments
 (0)