Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix
Browse files Browse the repository at this point in the history
pcrespov committed Aug 19, 2024
1 parent 697081d commit cfeb7b1
Showing 1 changed file with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -38,13 +38,15 @@ async def get_solver_output_results(
)
solver_output_results: dict[str, Any] = {}
for port in (await solver.outputs).values():
if port.value is not None:
log.debug(
"Getting %s [%s]: %s", port.key, port.property_type, port.value
)
assert parse_obj_as(ResultsTypes, port.value) == port.value # type: ignore # nosec

solver_output_results[port.key] = port.value
log.debug(
"Output %s [%s]: %s",
port.key,
port.property_type,
port.value,
)
assert parse_obj_as(ResultsTypes, port.value) == port.value # type: ignore # nosec

solver_output_results[port.key] = port.value

return solver_output_results

0 comments on commit cfeb7b1

Please sign in to comment.