From 04ab475a36a3d6492808864beb41440a14558ed9 Mon Sep 17 00:00:00 2001 From: Josh Burman Date: Thu, 16 Dec 2021 16:38:25 +0000 Subject: [PATCH] comment for future work --- app/models/solver_run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/models/solver_run.py b/app/models/solver_run.py index f99b9a8..7b1b522 100644 --- a/app/models/solver_run.py +++ b/app/models/solver_run.py @@ -44,6 +44,7 @@ class SolverRun(BaseModel): # and added to the list and needs to be, else increment the count of items # in the bundle if bundle_index == None: + # TODO: create actual "bundle" models instead of dicts bundles.append({ 'id': attribute_id, 'count': 1, 'type': type_attribute }) else: bundles[bundle_index]['count'] += 1