From bd9112e9423b4694847a7a5f1e6fa6c69896a14e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=ED=95=98=EB=88=84?= Date: Wed, 22 Mar 2023 14:55:22 +0000 Subject: [PATCH] fix: bytes --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 9ad56b6..17d70a1 100644 --- a/app.py +++ b/app.py @@ -34,7 +34,7 @@ def encrypt(text: str) -> str: return fn.encrypt(text.encode()) def decrypt(token: str) -> str: - return fn.decrypt(bytes(token)).decode() + return fn.decrypt(token).decode() async def async_list(values: list) -> Any: for value in values: