Skip to content

Commit

Permalink
deprecation fix dimensions
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Apr 4, 2024
1 parent 6a4f825 commit 1ee9ee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sbmlsim/result/xresult.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def is_timecourse(self) -> bool:
if dim == "_time":
continue
else:
if xds.dims[dim] != 1:
if xds.sizes[dim] != 1:
is_tc = False
else:
return False
Expand Down

0 comments on commit 1ee9ee3

Please sign in to comment.