Skip to content

Commit de6143f

Browse files
fix return type
1 parent 89ab703 commit de6143f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/galaxy/tool_util/linters/datatypes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
DATATYPES_CONF = os.path.join(os.path.dirname(config.__file__), "sample", "datatypes_conf.xml.sample")
1919

2020

21-
def _parse_datatypes(datatype_conf_path: str) -> Set[str]:
21+
def _parse_datatypes(datatype_conf_path: str) -> Set[Optional[str]]:
2222
datatypes = set()
2323
tree = parse_xml(datatype_conf_path)
2424
root = tree.getroot()

0 commit comments

Comments
 (0)