chore(format): run black on dev (#717)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-08-24 00:55:09 +08:00
committed by GitHub
parent 7f54d2cd17
commit 81e3488ab8
+1 -3
View File
@@ -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: