fix: correct typo in devRant community string and remove image show call

- Fix spelling of "community" in the mention count output string
- Remove the redundant `new_image.show()` call at the end of merge_images.py
This commit is contained in:
retoor 2024-12-03 03:34:56 +00:00
parent 522465e0f8
commit 0d7ff2a0d1
2 changed files with 1 additions and 3 deletions

View File

@ -44,5 +44,3 @@ for path, image in resized_images:
current_image_number += 1
if current_col == cols:
current_col = 0
new_image.show()

View File

@ -63,7 +63,7 @@ def dump():
users.sort()
for user in users:
mention_text = f"@{user}"
line = f"{user} is {all_content.count(mention_text)} times mentioned on devRant(developer comminity)."
line = f"{user} is {all_content.count(mention_text)} times mentioned on devRant(developer community)."
printr(line)
print(line)
print("```")