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
22c72b25
Unverified
Commit
22c72b25
authored
Dec 10, 2024
by
Jakob Görgen
Browse files
symphony/cli: removed prints
parent
87cc567a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
symphony/cli/simbricks/cli/commands/runs.py
symphony/cli/simbricks/cli/commands/runs.py
+4
-4
No files found.
symphony/cli/simbricks/cli/commands/runs.py
View file @
22c72b25
...
@@ -132,16 +132,16 @@ async def submit_script(
...
@@ -132,16 +132,16 @@ async def submit_script(
system
=
await
system_client
.
create_system
(
sb_system
)
system
=
await
system_client
.
create_system
(
sb_system
)
system_id
=
int
(
system
[
"id"
])
system_id
=
int
(
system
[
"id"
])
system
=
await
system_client
.
get_system
(
system_id
)
system
=
await
system_client
.
get_system
(
system_id
)
print
(
system
)
#
print(system)
systems
=
await
system_client
.
get_systems
()
systems
=
await
system_client
.
get_systems
()
print
(
systems
)
#
print(systems)
simulation
=
await
system_client
.
create_simulation
(
system_id
,
sb_simulation
)
simulation
=
await
system_client
.
create_simulation
(
system_id
,
sb_simulation
)
sim_id
=
int
(
simulation
[
"id"
])
sim_id
=
int
(
simulation
[
"id"
])
simulation
=
await
system_client
.
get_simulation
(
sim_id
)
simulation
=
await
system_client
.
get_simulation
(
sim_id
)
print
(
simulation
)
#
print(simulation)
simulations
=
await
system_client
.
get_simulations
()
simulations
=
await
system_client
.
get_simulations
()
print
(
simulations
)
#
print(simulations)
instantiation
=
await
system_client
.
create_instantiation
(
sim_id
,
None
)
instantiation
=
await
system_client
.
create_instantiation
(
sim_id
,
None
)
inst_id
=
int
(
instantiation
[
"id"
])
inst_id
=
int
(
instantiation
[
"id"
])
...
...
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