Skip to content

Commit

Permalink
Merge branch 'hotfix/fix-json-resource'
Browse files Browse the repository at this point in the history
  • Loading branch information
aranega committed Mar 11, 2024
2 parents eebb477 + 45cf914 commit 775fb96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyecore/resources/json.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def to_dict(self, obj, is_noncont_ref=False, is_attr=False, feature=None):
fun = self._to_ref_from_obj if is_noncont_ref else self.to_dict
result = []
for x in obj:
write_object = fun(x, is_noncont_ref, is_attr)
write_object = fun(x, is_noncont_ref, is_attr, feature=feature)
if write_object is NO_OBJECT:
continue
result.append(write_object)
Expand Down

0 comments on commit 775fb96

Please sign in to comment.