Skip to content

Commit

Permalink
Removed debug prints.
Browse files Browse the repository at this point in the history
  • Loading branch information
lange50 committed Mar 27, 2025
1 parent 76f479a commit efb5395
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/qudi/gui/terascan/terascan_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,9 @@ def on_activate(self) -> None:
self._mw.stop_wavelength.setValue(self._stop_wavelength)

for txt, scan_type in self._terascan_logic().scan_types.items():
print(txt, scan_type)
self._mw.scan_type.addItem(txt, scan_type)
for txt, scan_rate in self._terascan_logic().scan_rates.items():
self._mw.scan_rate.addItem(txt, scan_rate)
print(txt, scan_rate)

# connect all GUI internal signals
self._mw.start_wavelength.valueChanged.connect(self._start_changed)
Expand Down

0 comments on commit efb5395

Please sign in to comment.