Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
c2a47003
Commit
c2a47003
authored
Jan 16, 2025
by
Jonas Kaufmann
Browse files
symphony/runtime/output.py: remove TODO that is already done
parent
eacbf429
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
symphony/runtime/simbricks/runtime/output.py
symphony/runtime/simbricks/runtime/output.py
+1
-6
No files found.
symphony/runtime/simbricks/runtime/output.py
View file @
c2a47003
...
...
@@ -33,8 +33,6 @@ if typing.TYPE_CHECKING:
from
simbricks.orchestration.instantiation
import
proxy
as
inst_proxy
from
simbricks.orchestration.simulation
import
base
as
sim_base
# TODO (Jonas) generic prepare
class
SimulationExitState
(
enum
.
Enum
):
SUCCESS
=
0
...
...
@@ -167,10 +165,7 @@ class SimulationOutput:
json_obj_out_list
=
[]
for
proc_out
in
proc_list
:
json_obj_out_list
.
append
(
proc_out
.
toJSON
())
json_obj
[
proxy
.
name
]
=
{
"class"
:
proxy
.
__class__
.
__name__
,
"output"
:
json_obj_out_list
}
json_obj
[
proxy
.
name
]
=
{
"class"
:
proxy
.
__class__
.
__name__
,
"output"
:
json_obj_out_list
}
return
json_obj
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment