in CloudFormation/converter/app.py [0:0]
def parse_manifest_input(jsonLine):
try:
jsonObj = json.loads(jsonLine)
return jsonObj
except ValueError as e:
print(f"Error decoding the string: {jsonLine}, {e}")
raise