Skip to content

Commit

Permalink
REbase into...
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Jun 29, 2024
1 parent c909267 commit 8408ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tool_util/parameters/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
def get_args(tp: Any) -> tuple:
return getattr(tp, "__args__", ()) if tp is not Generic else Generic # type: ignore[return-value,assignment,unused-ignore]

def get_origin(tp: Any) -> Optional[Any]: # type: ignore[no-redef]
def get_origin(tp: Any) -> Optional[Any]: # type: ignore[no-redef,unused-ignore]
return getattr(tp, "__origin__", None)


Expand Down

0 comments on commit 8408ac2

Please sign in to comment.