Fix non-tuple return from gptq function

This commit is contained in:
0cc4m
2023-06-28 22:50:04 +02:00
parent c753671ac1
commit 0e4b6571d5

View File

@@ -44,7 +44,7 @@ def load_model_gptq_settings(path):
try: try:
js = json.load(open(path + "/config.json", "r")) js = json.load(open(path + "/config.json", "r"))
except Exception as e: except Exception as e:
return False return False, False
gptq_model = False gptq_model = False
gptq_file = False gptq_file = False