From 9334aba4ae6a502dce77cdbe17d47af3d5cda8b9 Mon Sep 17 00:00:00 2001 From: thorpejosh Date: Mon, 23 Oct 2023 19:00:41 +0800 Subject: [PATCH] fix: pylint line lengths --- image_sorting_tool/image_sort.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/image_sorting_tool/image_sort.py b/image_sorting_tool/image_sort.py index 2aa59ef..057b6d0 100644 --- a/image_sorting_tool/image_sort.py +++ b/image_sorting_tool/image_sort.py @@ -228,15 +228,16 @@ def find_images(self): self.tk_text_object.configure(state="normal") # Make writable self.tk_text_object.insert( tk.INSERT, - f"\nFound {len(self.sort_list)} images/videos meeting the above criteria that will successfully sort in\n" - f"{self.source_dir}\n", + f"\nFound {len(self.sort_list)} images/videos meeting the above criteria " + f"that will successfully sort in {self.source_dir}\n", ) if self.failed_list: self.tk_text_object.insert( tk.INSERT, f"\nWARNING: Found {len(self.failed_list)} files meeting the above criteria that won't be sorted " - "due to no date-taken data being available, these files will go into a 'failed_to_sort' folder during sorting\n", + "due to no date-taken data being available, " + "these files will go into a 'failed_to_sort' folder during sorting\n", ) if self.other_list: