Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Bliss
bliss
Commits
d72e8235
Commit
d72e8235
authored
Jun 21, 2021
by
Perceval Guillou
Browse files
remove prints
parent
891cce79
Changes
1
Hide whitespace changes
Inline
Side-by-side
bliss/config/plugins/bliss_controller.py
View file @
d72e8235
...
...
@@ -37,7 +37,7 @@ def create_objects_from_config_node(cfg_obj, cfg_node):
# always create the bliss controller first
bctrl
=
klass
(
ctrl_node
)
print
(
f
"
\n
=== From config:
{
item_name
}
from
{
bctrl
.
name
}
"
)
#
print(f"\n=== From config: {item_name} from {bctrl.name}")
if
isinstance
(
bctrl
,
BlissController
):
...
...
@@ -83,7 +83,7 @@ def create_objects_from_config_node(cfg_obj, cfg_node):
def
create_object_from_cache
(
config
,
name
,
bctrl
):
print
(
f
"
\n
=== From cache:
{
name
}
from
{
bctrl
.
name
}
"
)
#
print(f"\n=== From cache: {name} from {bctrl.name}")
try
:
return
bctrl
.
_get_subitem
(
name
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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