We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89ab703 commit 40c342aCopy full SHA for 40c342a
lib/galaxy/tool_util/linters/datatypes.py
@@ -23,7 +23,7 @@ def _parse_datatypes(datatype_conf_path: str) -> Set[str]:
23
tree = parse_xml(datatype_conf_path)
24
root = tree.getroot()
25
for elem in root.findall("./registration/datatype"):
26
- extension = elem.get("extension")
+ extension = elem.get("extension", "")
27
datatypes.add(extension)
28
auto_compressed_types = listify(elem.get("auto_compressed_types", ""))
29
for act in auto_compressed_types:
0 commit comments