Skip to content

Commit 5d28a11

Browse files
authored
Update base.py
removed some debugging stuff i left in
1 parent 365a572 commit 5d28a11

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

base.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@ def enc():
5353
x = input("input pls right here: ")
5454
x = x.encode('utf-8')
5555
x = ''.join(format(byte, '08b') for byte in x)
56-
print(x)
5756
leng = len(x)
58-
print(len(x))
5957
mod = leng % 6
6058
if mod != 0:
6159
pad = leng % 6
@@ -98,4 +96,4 @@ def enc():
9896
dec()
9997
else:
10098
print("please enter a real option mf >:(")
101-
sys.exit()
99+
sys.exit()

0 commit comments

Comments
 (0)