Skip to content

Commit

Permalink
remove type annotation
Browse files Browse the repository at this point in the history
it seems to complicated to import Traversable
  • Loading branch information
bernt-matthias committed Nov 23, 2024
1 parent 1459001 commit ee251c8
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 @@ -20,7 +20,7 @@
DATATYPES_CONF = resource_path(linters, "datatypes_conf.xml.sample")


def _parse_datatypes(datatype_conf_path: str) -> Set[str]:
def _parse_datatypes(datatype_conf_path) -> Set[str]:
datatypes = set()
tree = parse_xml(datatype_conf_path)
root = tree.getroot()
Expand Down

0 comments on commit ee251c8

Please sign in to comment.