scripts/libraries: Fix bug in ml model.py assignment.

This commit is contained in:
Kwabena W. Agyeman 2024-07-07 15:24:46 -07:00
parent f3f6141894
commit 068c7c11f3

View File

@ -16,6 +16,7 @@ class Model:
if isinstance(retobj, tuple): if isinstance(retobj, tuple):
labels, self.model = retobj labels, self.model = retobj
return labels, self return labels, self
self.model = retobj
return self return self
def __str__(self): def __str__(self):