From df910b4d6b44322299a053b3954f36a68580f822 Mon Sep 17 00:00:00 2001 From: Odyhibit Date: Thu, 20 Jun 2024 22:12:57 -0500 Subject: [PATCH] increment version --- src/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.py b/src/main.py index cb84b38..32c61ad 100644 --- a/src/main.py +++ b/src/main.py @@ -71,6 +71,7 @@ def check_length(e): cover_label.configure(text=f"Cover Text - {count_alpha(hidden_str) - count_alpha(cover_str)} left") def count_alpha(text: str) -> int: + """count the number of alphabet characters in a bit of text""" count = 0 for letter in text: if letter.isalpha():