Skip to content
Snippets Groups Projects
Commit 27c1ed2d authored by Sander Snoo's avatar Sander Snoo
Browse files

Incorrect setpoints in MeasurementParameter.add_derived_param

parent 212cc923
No related branches found
No related tags found
No related merge requests found
# Changelog
All notable changes to Pulselib will be documented in this file.
## \[1.5.5] - 2022-09-27
### Fixed
- Incorrect setpoints in measurement_param.add_derived_param.
## \[1.5.4] - 2022-09-23
### Added
......
......@@ -131,7 +131,7 @@ class MeasurementParameter(MultiParameter):
time = tuple(np.arange(n_samples) * period)
setpoints.append(time, 'time', 'time', 'ns')
self.setpoints = self.setpoints + setpoints.setpoints
self.setpoints = self.setpoints + (setpoints.setpoints,)
self.setpoint_names = self.setpoint_names + (setpoints.setpoint_names,)
self.setpoint_labels = self.setpoint_labels + (setpoints.setpoint_labels,)
self.setpoint_units = self.setpoint_units + (setpoints.setpoint_units,)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment