From 25b3b30634dc5770284aefc526bab7bfc1384fe5 Mon Sep 17 00:00:00 2001 From: Benjamin Loison Date: Fri, 26 Apr 2024 04:10:02 +0200 Subject: [PATCH] Remove a commented `print` in `plot_dates.py` --- datasets/rafael/240424/plot_dates.py | 1 - 1 file changed, 1 deletion(-) diff --git a/datasets/rafael/240424/plot_dates.py b/datasets/rafael/240424/plot_dates.py index fa0a70d..bb86c78 100644 --- a/datasets/rafael/240424/plot_dates.py +++ b/datasets/rafael/240424/plot_dates.py @@ -18,7 +18,6 @@ dates = [] for fileName in sorted(os.listdir()): image = Image.open(fileName) imageExif = image.getexif() - #print(imageExif) dateTimeKey = list(TAGS.keys())[list(TAGS.values()).index('DateTime')] dateTime = imageExif[dateTimeKey] names += [fileName.replace('DSC0', '').replace('.JPG', '')]