Skip to content

Commit 0dd8693

Browse files
committed
[skip ci] touch up exception string
1 parent e53b2ee commit 0dd8693

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydra/utils/typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def expand_pattern(t):
110110
return origin
111111
if origin not in (ty.Union, type) and not issubclass(origin, ty.Iterable):
112112
raise TypeError(
113-
f"Don't know how to handle args ({args}) for {origin} type"
113+
f"TypeParser doesn't know how to handle args ({args}) for {origin} types"
114114
)
115115
return (origin, [expand_pattern(a) for a in args])
116116

0 commit comments

Comments
 (0)