mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-09 10:56:52 +08:00
fix: tiny lora bug found by mypy (#10959)
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
This commit is contained in:
@@ -12,7 +12,7 @@ class NovitaAiToolBase:
|
|||||||
if not loras_str:
|
if not loras_str:
|
||||||
return []
|
return []
|
||||||
|
|
||||||
loras_ori_list = lora_str.strip().split(";")
|
loras_ori_list = loras_str.strip().split(";")
|
||||||
result_list = []
|
result_list = []
|
||||||
for lora_str in loras_ori_list:
|
for lora_str in loras_ori_list:
|
||||||
lora_info = lora_str.strip().split(",")
|
lora_info = lora_str.strip().split(",")
|
||||||
|
|||||||
Reference in New Issue
Block a user