Skip to content

Commit

Permalink
Merge pull request #50 from gramaziokohler/47-bug-domain-updates
Browse files Browse the repository at this point in the history
#47 bug domain updates
  • Loading branch information
funkchaser authored Sep 11, 2024
2 parents 0c69d53 + 64f4c7b commit dab7b84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

### Changed

* Plot components.
* Fixed domain init in DataInt
* Changed output options in Plot components.
* Fixed Windows install script trying to install from offline wheels.
* Fixed issues related to using ARA on Mac.

### Removed

* Removed option for static plots.

## [0.9.3] 2024-06-18
Expand Down
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 dab7b84

Please sign in to comment.