From 068c7c11f3ec2149b426c146281236c39a2d96de Mon Sep 17 00:00:00 2001 From: "Kwabena W. Agyeman" Date: Sun, 7 Jul 2024 15:24:46 -0700 Subject: [PATCH] scripts/libraries: Fix bug in ml model.py assignment. --- scripts/libraries/ml/ml/model.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/libraries/ml/ml/model.py b/scripts/libraries/ml/ml/model.py index b015d3295..b551708ee 100644 --- a/scripts/libraries/ml/ml/model.py +++ b/scripts/libraries/ml/ml/model.py @@ -16,6 +16,7 @@ class Model: if isinstance(retobj, tuple): labels, self.model = retobj return labels, self + self.model = retobj return self def __str__(self):