From 81e3488ab80e59268f1c58003db76daf691b785c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Aug 2024 00:55:09 +0800 Subject: [PATCH] chore(format): run black on dev (#717) Co-authored-by: github-actions[bot] --- examples/web/funcs.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/web/funcs.py b/examples/web/funcs.py index 3f6b81e..933fb68 100644 --- a/examples/web/funcs.py +++ b/examples/web/funcs.py @@ -64,9 +64,7 @@ def load_chat(cust_path: Optional[str], coef: Optional[str]) -> bool: ret = chat.load(coef=coef) else: logger.info("local model path: %s", cust_path) - ret = chat.load( - "custom", custom_path=cust_path, coef=coef - ) + ret = chat.load("custom", custom_path=cust_path, coef=coef) global custom_path custom_path = cust_path if ret: