Skip to content

Commit

Permalink
refactor: remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
maxim-v4s committed Oct 21, 2024
1 parent 8ceb5eb commit b26726d
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions qualibrate/qualibration_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ def _validate_nodes_names_mapping(
for name, node in nodes.items():
if name != node.name:
node = node.copy(name)
print("res", node)
logger.warning(
f"{node} has to be copied due to conflicting name ({name})"
)
Expand Down Expand Up @@ -476,10 +475,7 @@ def _add_node_by_name(self, node_name: str) -> QualibrationNode:
graph.
"""
node = self._get_qnode_or_error(node_name)
print(node)
if node not in self._graph:
print("call add to graph")
print(self._graph)
self._graph.add_node(node, **self.__class__._node_init_args)
return node

Expand Down

0 comments on commit b26726d

Please sign in to comment.