From ee78037f17628ac0303c8de69ffd81568aa1694d Mon Sep 17 00:00:00 2001 From: Cole Deck Date: Wed, 8 May 2024 13:07:47 -0500 Subject: [PATCH] Remove debug statement --- read_datasheet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/read_datasheet.py b/read_datasheet.py index ab8ff10..83a3e12 100755 --- a/read_datasheet.py +++ b/read_datasheet.py @@ -65,7 +65,7 @@ def find_file_noext(directory, prefix="part-hires"): entries = os.listdir(directory) # Filter files that match 'filename.EXTENSION' matching_files = [file for file in entries if os.path.isfile(os.path.join(directory, file)) and file.split('.')[0] == prefix and len(file.split('.')) == 2] - print(directory, matching_files) + #print(directory, matching_files) return matching_files def rotate_and_crop_image(path, image_name):