in comprehend_groundtruth_integration/src/comprehend_customer_scripts/GroundTruth/EntityRecognizer/groundtruth_to_comprehend_format_converter.py [0:0]
def parse_manifest_input(self, jsonLine):
try:
jsonObj = json.loads(jsonLine)
return jsonObj
except ValueError as e:
print(f"Error decoding the string: {jsonLine}, {e}")
raise