Skip to content

Commit

Permalink
small changes to make_class, so result is properly formatted, closes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
djarecka committed Jun 2, 2020
1 parent e0b3552 commit d17b593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydra/engine/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def make_klass(spec):
if isinstance(item[1], attr._make._CountingAttr):
newfields[item[0]] = item[1]
else:
newfields[item[0]] = attr.ib(repr=False, type=item[1])
newfields[item[0]] = attr.ib(type=item[1])
else:
if (
any([isinstance(ii, attr._make._CountingAttr) for ii in item])
Expand Down

0 comments on commit d17b593

Please sign in to comment.