Skip to content

Commit d17b593

Browse files
committed
small changes to make_class, so result is properly formatted, closes #267
1 parent e0b3552 commit d17b593

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydra/engine/helpers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def make_klass(spec):
235235
if isinstance(item[1], attr._make._CountingAttr):
236236
newfields[item[0]] = item[1]
237237
else:
238-
newfields[item[0]] = attr.ib(repr=False, type=item[1])
238+
newfields[item[0]] = attr.ib(type=item[1])
239239
else:
240240
if (
241241
any([isinstance(ii, attr._make._CountingAttr) for ii in item])

0 commit comments

Comments
 (0)