From 73876f73a122c9f53e4e762105a9702274950ba6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B9=96=E5=BF=83=E5=B0=8F=E7=AD=91?= <22128667+lakevilladom@users.noreply.github.com> Date: Sat, 12 Oct 2024 14:29:04 +0800 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2a1a721..aaefbc7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -41,7 +41,7 @@ jobs: if response.status_code == 200: img_type = url.split('.')[-1] base64_str = base64.b64encode(response.content).decode('utf-8') - return f"'data:image/{img_type};base64,{base64_str}'" + return f"data:image/{img_type};base64,{base64_str}" else: return url