Skip to content

Commit

Permalink
Fixed variable passing issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
lange50 committed Apr 24, 2025
1 parent 6bbe32b commit 7a81909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qudi/hardware/timetagger/swabian_tagger.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def __update_data(self):
if self.module_state() == 'locked':
self.counter.waitUntilFinished(self._bin_width * 1e-6 * 100) # in ms, should never reach this limit, but just in case
self.sigScanFinished.emit(
np.array([time.time(), np.squeeze(self.get_data_trace())])
np.array(np.squeeze(self.get_data_trace()))
)

self.counter.startFor(self._bin_width * 1000) # in ps, should be stored as such #TODO

0 comments on commit 7a81909

Please sign in to comment.