Skip to content

Commit

Permalink
Merge pull request #36 from miketvo/release-2023-06-24
Browse files Browse the repository at this point in the history
Release 2023-06-24
  • Loading branch information
miketvo authored Jun 24, 2023
2 parents 72fe63a + f7675f4 commit e72908b
Show file tree
Hide file tree
Showing 2 changed files with 261 additions and 250 deletions.
2 changes: 1 addition & 1 deletion src/imdupes/detect_dup_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def detect_dup_images(
if verbose > 0:
print(
f'{"Scanning for identical images..." if progress_bar != PROGRESS_BAR_LEVELS[0] else ""}'
f'{"" if (verbose > 1 and progress_bar == PROGRESS_BAR_LEVELS[0]) or has_errors else " "}'
f'{"" if (progress_bar == PROGRESS_BAR_LEVELS[0]) and (verbose > 1 or has_errors) else " "}'
f'Found {colored(str(len(hashed_dups.values())), attrs=["bold"])} duplication(s) '
f'across {colored(str(sum(len(lst) for lst in hashed_dups.values())), attrs=["bold"])} file(s) '
f'{colored("[DONE]", color="green", attrs=["bold"])}',
Expand Down
Loading

0 comments on commit e72908b

Please sign in to comment.