Skip to content

Commit

Permalink
me when i leave a print statement in
Browse files Browse the repository at this point in the history
  • Loading branch information
DogeisCut committed Sep 11, 2024
1 parent 6b84609 commit 64d451e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/cogs/macros.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,6 @@ def base64encode(*args: str):
def base64decode(*args: str):
assert len(args) >= 1, "base64.decode macro must receive 1 or more arguments"
string = reduce(lambda x, y: str(x) + "/" + str(y), args)
print(string)
base64_bytes = string.encode('utf-8')
text_bytes = base64.b64decode(base64_bytes)
return text_bytes.decode('utf-8')
Expand Down

0 comments on commit 64d451e

Please sign in to comment.