From 7fcad94f70c8beea42334ea2fe656855ecf65402 Mon Sep 17 00:00:00 2001 From: smallfawn <101914820+smallfawn@users.noreply.github.com> Date: Fri, 28 Jun 2024 15:33:26 +0800 Subject: [PATCH] Update decode.py --- src/decode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decode.py b/src/decode.py index 9ce0f80a8..c4acdd63a 100644 --- a/src/decode.py +++ b/src/decode.py @@ -121,6 +121,6 @@ def process_data(data): raise TypeError("Expected string or bytes-like object") return byte_data - +print(final_decrypted_data) with open("./onput.py", 'wb') as f: f.write(process_data(final_decrypted_data))