Skip to content

Commit

Permalink
remove cruft comment
Browse files Browse the repository at this point in the history
  • Loading branch information
YaphetKG committed Jun 28, 2024
1 parent d180d8b commit f4521fc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/dug/core/parsers/radx_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ class RADxParser(FileParser):
def __call__(self, input_file: InputFile) -> List[Indexable]:
tree = ET.parse(input_file, ET.XMLParser(encoding='utf-8'))
root = tree.getroot()
study_id = root.attrib['id']
# Parse study name from GapExchange file, and if that fails try from file handle
study_id = root.attrib['id']
# If still None, raise an error message
study_name = root.attrib['study_name']
elements = []
Expand Down

0 comments on commit f4521fc

Please sign in to comment.