We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a65b2bb commit 4927f9bCopy full SHA for 4927f9b
ulc_mm_package/utilities/coarse_focus_utility.py
@@ -64,7 +64,7 @@ def perform_sweep(
64
total_steps = len(sweep_range)
65
images = []
66
67
- logger.info(f"Moving motor...")
+ logger.info("Moving motor...")
68
for step, motor_pos in enumerate(sweep_range, start=1):
69
motor.move_abs(motor_pos)
70
img, timestamp = next(camera.yieldImages())
@@ -257,7 +257,7 @@ def start_sweep():
257
output_string = (
258
f"Stage adjustment successful!\nCells found at motor position {res}."
259
)
260
- messagebox.showinfo(f"Success", output_string)
+ messagebox.showinfo("Success", output_string)
261
else:
262
messagebox.showerror("Error", "An unexpected error occurred.")
263
0 commit comments