Skip to content

Commit

Permalink
ADAr dimensions returned as a tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
mattclarke committed Sep 8, 2023
1 parent 64c8c25 commit 07c6fcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion streaming_data_types/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Version is not directly defined in __init__ because that causes all
# run time dependencies to become build-time dependencies when it is
# imported in setup.py
version = "0.23.0"
version = "0.23.1"
2 changes: 1 addition & 1 deletion streaming_data_types/area_detector_ADAr.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def deserialise_ADAr(buffer: Union[bytearray, bytes]) -> ADArray:
source_name=ad_array.SourceName().decode(),
unique_id=unique_id,
timestamp=datetime.fromtimestamp(used_timestamp, tz=timezone.utc),
dimensions=ad_array.DimensionsAsNumpy(),
dimensions=tuple(ad_array.DimensionsAsNumpy()),
data=data,
attributes=attributes_list,
)

0 comments on commit 07c6fcb

Please sign in to comment.