From b4e35ecef663f6cf98c788efc21889f18fbca49b Mon Sep 17 00:00:00 2001 From: alexvillr <73649305+alexvillr@users.noreply.github.com> Date: Tue, 17 Oct 2023 23:24:15 +1000 Subject: [PATCH] just prettifying a bit --- build/vision/calibrate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)