From 162ce084472c40804f7528f0f47c20f7008fd343 Mon Sep 17 00:00:00 2001 From: retoor Date: Tue, 3 Dec 2024 04:34:56 +0100 Subject: [PATCH] Bugfix. --- 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("```")