Skip to content

Commit

Permalink
iop: fixes wrong argument passed
Browse files Browse the repository at this point in the history
Signed-off-by: Pamfilos Fokianos <[email protected]>
  • Loading branch information
pamfilos committed Dec 12, 2024
1 parent 63c33b8 commit e98bd8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dags/iop/iop_process_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def iop_parse_file(**kwargs):
xml_bytes = base64.b64decode(encoded_xml)
if isinstance(xml_bytes, bytes):
xml_bytes = xml_bytes.decode("utf-8")
xml = convert_xml_to_et_tree(input)
xml = convert_xml_to_et_tree(xml_bytes)

parser = IOPParser(file_path=file_name)
parsed = parser.parse(xml)
Expand Down

0 comments on commit e98bd8b

Please sign in to comment.