From 8c2868a60ec6af34a503b5d25ae66419e9c52913 Mon Sep 17 00:00:00 2001 From: KnugiHK <24708955+KnugiHK@users.noreply.github.com> Date: Sat, 17 May 2025 16:20:11 +0800 Subject: [PATCH] Fix on missing return in get_status_location --- Whatsapp_Chat_Exporter/utility.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Whatsapp_Chat_Exporter/utility.py b/Whatsapp_Chat_Exporter/utility.py index afcebd9..6dcb40f 100644 --- a/Whatsapp_Chat_Exporter/utility.py +++ b/Whatsapp_Chat_Exporter/utility.py @@ -567,6 +567,7 @@ def get_status_location(output_folder: str, offline_static: str) -> str: with open(w3css_path, "wb") as f: f.write(resp.read()) w3css = os.path.join(offline_static, "w3.css") + return w3css def setup_template(template: Optional[str], no_avatar: bool, experimental: bool = False) -> jinja2.Template: