diff --git a/build/vision/calibrate.py b/build/vision/calibrate.py index 5c428dd..4c6d3ec 100644 --- a/build/vision/calibrate.py +++ b/build/vision/calibrate.py @@ -75,8 +75,8 @@ def get_cell_dims(img: Image, top_left: (int, int)) -> (float, float): cropped_array = np.array(cropped) plt.imshow(cropped_array) plt.show(block=False) - width = float(input('Please enter the width of a cell')) - height = float(input('Please enter the height of a cell')) + width = float(input('Please enter the width of a cell: ')) + height = float(input('Please enter the height of a cell: ')) plt.close('all') return (width, height)