Skip to content

Commit

Permalink
fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Mar 5, 2024
1 parent 89ab703 commit 40c342a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tool_util/linters/datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def _parse_datatypes(datatype_conf_path: str) -> Set[str]:
tree = parse_xml(datatype_conf_path)
root = tree.getroot()
for elem in root.findall("./registration/datatype"):
extension = elem.get("extension")
extension = elem.get("extension", "")
datatypes.add(extension)
auto_compressed_types = listify(elem.get("auto_compressed_types", ""))
for act in auto_compressed_types:
Expand Down

0 comments on commit 40c342a

Please sign in to comment.