Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
Odyhibit committed Jun 15, 2024
1 parent 0af1973 commit f16f765
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ def check_length():
for letter in cover_str:
if letter.isalpha():
cover += 1
# print("cover:", cover, "len(hidden):", len(hidden_str))
if cover >= len(hidden_str):
calc_button.configure(state="normal", text="Calculate cipher")
else:
Expand All @@ -68,10 +67,11 @@ def check_length():
def calculate_cipher():
"""This function does the heavy lifting for the encoding.
This should be moved into the encode_five_strips_of_bacon.py file.
BISCUT Bold Italic Strikethrough Capital Underline - Text
:return: returns nothing
"""
# BISCUT Bold Italic Strikethrough Capital Underline - Text

word_joiner = "\u2060"
no_break_space = "\ufeff"

Expand Down

0 comments on commit f16f765

Please sign in to comment.