From 20eb5fe63c26bfeb457f80326214bf3438fc0f4f Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 4 Sep 2025 16:46:47 +0800 Subject: [PATCH] bugfix --- appPublic/base64_to_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appPublic/base64_to_file.py b/appPublic/base64_to_file.py index 67f1254..153dbdb 100644 --- a/appPublic/base64_to_file.py +++ b/appPublic/base64_to_file.py @@ -62,4 +62,4 @@ def base64_to_file(base64_string, output_path): fp = os.path.join(output_path, fname) with open(fp, 'wb') as file: file.write(binary_data) - + return fp