Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
(#1227) Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicOram committed Mar 11, 2024
1 parent db55d67 commit 97194ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hyperion/experiment_plans/oav_grid_detection_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def grid_detection_plan(

LOGGER.info(f"Drawing snapshot {grid_width_pixels} by {grid_height_px}")

x_steps = (math.ceil(grid_width_pixels / box_size_x_pixels),)
x_steps = math.ceil(grid_width_pixels / box_size_x_pixels)

upper_left = (tip_x_px, min_y)

Expand Down

0 comments on commit 97194ac

Please sign in to comment.