From 8408ac28eb3207f7edb1c7214548fd734a9cff70 Mon Sep 17 00:00:00 2001 From: John Chilton Date: Sat, 29 Jun 2024 18:13:45 -0400 Subject: [PATCH] REbase into... --- lib/galaxy/tool_util/parameters/_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy/tool_util/parameters/_types.py b/lib/galaxy/tool_util/parameters/_types.py index 0bab192895a9..59d42279df72 100644 --- a/lib/galaxy/tool_util/parameters/_types.py +++ b/lib/galaxy/tool_util/parameters/_types.py @@ -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)