Skip to content

Commit ba083ed

Browse files
committed
Revert "improve handling if password is too long"
This reverts commit 13d14d2.
1 parent 13d14d2 commit ba083ed

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tools/AdultCornerDecoder/decoder.py

-5
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,12 @@
1313
# - For example, 'a' is represented as '0003', 'b' as '0001', and other letters remain as themselves.
1414
# - If the input is a single character, it is returned directly without further processing.
1515

16-
import sys
17-
1816
def decode_password(encoded_str):
1917
"""Decodes an encoded password back into plaintext."""
2018

2119
# If the input is a single character, return it directly
2220
if len(encoded_str) == 1:
2321
return encoded_str
24-
else:
25-
print("Password is longer as an single character!")
26-
sys.exit(0)
2722

2823
decoded_chars = []
2924

0 commit comments

Comments
 (0)