Skip to content

Commit ec69f72

Browse files
committed
Whitespace
1 parent bc2de5f commit ec69f72

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

delta_backend/src/Converter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
# Converter
1919
class Converter:
20-
2120
def __init__(self, fhir_data):
2221
#Converter variables
2322
self.imms = []

delta_backend/tests/test_convert_to_flat_json.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ def assert_dynamodb_record(self, operation_flag, items, expected_values, expecte
110110

111111
def test_fhir_converter_json_direct_data(self):
112112
"""it should convert fhir json data to flat json"""
113-
114113
json_data = json.dumps(ValuesForTests.json_data)
115114

116115
start = time.time()
@@ -139,7 +138,6 @@ def test_fhir_converter_json_error_scenario(self):
139138
error_test_cases = [ErrorValuesForTests.missing_json, ErrorValuesForTests.json_dob_error]
140139

141140
for test_case in error_test_cases:
142-
143141
json_data = json.dumps(test_case)
144142

145143
start = time.time()
@@ -176,7 +174,6 @@ def test_handler_imms_convert_to_flat_json(self):
176174

177175
for test_case in expected_action_flags:
178176
with self.subTest(test_case["Operation"]):
179-
180177
event = self.get_event(operation=test_case["Operation"])
181178

182179
response = handler(event, None)
@@ -276,7 +273,6 @@ def test_get_conversions_exception(self, mock_get_conversions):
276273
def test_conversion_exceptions(self, mock_get_key_value, mock_get_conversions):
277274
mock_get_conversions.side_effect = Exception("Error while getting conversions")
278275
mock_get_key_value.side_effect = Exception("Key value retrieval failed")
279-
280276
converter = Converter(fhir_data="some_data")
281277

282278
schema = {

0 commit comments

Comments
 (0)