fix: 修复 f-string 双引号问题

This commit is contained in:
Henry He 2024-04-26 11:02:55 +08:00
parent abb82076eb
commit a2dca888ac
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ def get_img_urls_by_trace_id(trace_id: str, format_type: str = "png"):
def get_trace_id(img_url: str):
# 浏览器端上传的图片多了 /spectrum/ 这个路径
return f"spectrum/{img_url.split("/")[-1]}" if img_url.find("spectrum") != -1 else img_url.split("/")[-1]
return f"spectrum/{img_url.split('/')[-1]}" if img_url.find("spectrum") != -1 else img_url.split("/")[-1]
if __name__ == '__main__':