quick fix to call method...hah python

This commit is contained in:
Joshua Burman 2022-05-11 15:11:37 -04:00
parent 8ee3ae3d2b
commit f92f487002

View File

@ -125,7 +125,8 @@ def solution_items(variables: list, solver_run: SolverRun) -> Tuple[list]:
if bundle: form_bundles.append(bundle)
for bundle in form_bundles:
items = bundle.ordered_items if solver_run.bundle_first_ordering else bundle.items
items = bundle.ordered_items(
) if solver_run.bundle_first_ordering else bundle.items
for item in items:
final_items.append(item)