Skip to content

Commit bbef54e

Browse files
committed
Temp
1 parent 3c614f0 commit bbef54e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lambdas/ruff.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ exclude = [
2727
line-length = 130
2828

2929

30-
[lint]
31-
3230
# Enable the pycodestyle (`E`) and Pyflakes (`F`) rules by default.
3331
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
3432
# McCabe complexity (`C901`) by default.

tests/scripts/disable_fhir_stub.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import argparse
2+
import logging
23

34
import boto3
45

@@ -8,6 +9,7 @@ def update_lambda_environment_variables(lambda_name, new_variables):
89
lambda_client = session.client("lambda")
910

1011
response = lambda_client.get_function_configuration(FunctionName=lambda_name)
12+
logging.info(response)
1113
current_environment = response["Environment"]["Variables"]
1214

1315
updated_environment = current_environment.copy()

0 commit comments

Comments
 (0)