From 0d7ff2a0d1a8a4a59be497a2dd77e5bc72e512e5 Mon Sep 17 00:00:00 2001 From: retoor Date: Tue, 3 Dec 2024 03:34:56 +0000 Subject: [PATCH] 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 --- merge_images.py | 2 -- src/drstats/dataset.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/merge_images.py b/merge_images.py index 05aa227..aba6687 100644 --- a/merge_images.py +++ b/merge_images.py @@ -44,5 +44,3 @@ for path, image in resized_images: current_image_number += 1 if current_col == cols: current_col = 0 - -new_image.show() diff --git a/src/drstats/dataset.py b/src/drstats/dataset.py index a3e7d5a..67f79be 100644 --- a/src/drstats/dataset.py +++ b/src/drstats/dataset.py @@ -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("```")