Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion cuvis/Measurement.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@ def refresh(self) -> None:
key, info)
self.data.update({key: SensorInfo._from_internal(info)})
else:
self.data.update({key: "Not Implemented!"})
# The C API reports entries it cannot hand out with an empty key,
# so they need a distinct one here or they overwrite each other.
self.data.update(
{key or "unsupported_data_{}_{}".format(cdtype, ind):
"Not Implemented!"})

def save(self, saveargs: SaveArgs) -> None:
ge, sa = saveargs._get_internal()
Expand Down
Loading
Loading