fix: tiny lora bug found by mypy (#10959)

Signed-off-by: yihong0618 <zouzou0208@gmail.com>
pull/10963/head
yihong 1 year ago committed by GitHub
parent 8b16f07eb0
commit 464f384cea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -12,7 +12,7 @@ class NovitaAiToolBase:
if not loras_str:
return []
loras_ori_list = lora_str.strip().split(";")
loras_ori_list = loras_str.strip().split(";")
result_list = []
for lora_str in loras_ori_list:
lora_info = lora_str.strip().split(",")

Loading…
Cancel
Save