Skip to content

Commit

Permalink
fix: pylint line lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
ThorpeJosh committed Oct 23, 2023
1 parent ec0c61a commit 9334aba
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions image_sorting_tool/image_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9334aba

Please sign in to comment.