Skip to content

Commit

Permalink
#47 fix DataInt domain bug
Browse files Browse the repository at this point in the history
  • Loading branch information
funkchaser committed Sep 10, 2024
1 parent e956809 commit abdb8b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aixd_ara/shallow_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def DataInt_from_shallow(shallow_dobj):
return DataInt(
name=shallow_dobj["name"],
dim=shallow_dobj["dim"],
domain=Options(shallow_dobj["domain"]) if shallow_dobj["domain"] else None,
domain=Interval(*shallow_dobj["domain"]) if shallow_dobj["domain"] else None,
)


Expand Down

0 comments on commit abdb8b0

Please sign in to comment.