We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e53b2ee commit 0dd8693Copy full SHA for 0dd8693
pydra/utils/typing.py
@@ -110,7 +110,7 @@ def expand_pattern(t):
110
return origin
111
if origin not in (ty.Union, type) and not issubclass(origin, ty.Iterable):
112
raise TypeError(
113
- f"Don't know how to handle args ({args}) for {origin} type"
+ f"TypeParser doesn't know how to handle args ({args}) for {origin} types"
114
)
115
return (origin, [expand_pattern(a) for a in args])
116
0 commit comments