From 6c00047508232ab4ca9821dfc0cbd32c7868b190 Mon Sep 17 00:00:00 2001 From: Gergely Wootsch Date: Mon, 16 Sep 2024 00:59:10 +0200 Subject: [PATCH] Remove redundant validation check for null image in ThumbnailWorker --- bookmarks/threads/workers.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bookmarks/threads/workers.py b/bookmarks/threads/workers.py index 505c38e4..56106754 100644 --- a/bookmarks/threads/workers.py +++ b/bookmarks/threads/workers.py @@ -867,7 +867,6 @@ def process_data(self, ref): # Let's check it against the source to make sure it's still valid. if image and not image.isNull(): res = bookmarks_openimageio.is_up_to_date(source, destination) - print(res, source, destination) if res == 1: images.make_color(destination) return True