Skip to content

Commit c7b3590

Browse files
committed
Change error message to address some linting issue
1 parent 8902694 commit c7b3590

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/qonnx/transformation/remove.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ def remove_node_and_rewire(model, node):
6262
if model.is_join_node(node):
6363
# Log this as a warning, so the user is aware of this, there might be
6464
# somthing wrong or some checks missing at the caller site
65-
warnings.warn(
66-
"Tried to remove join-node operation: Currently not supported"
67-
)
65+
warnings.warn("Removing join-node operation is currently not supported")
6866
# Exit the function here without doing anything
6967
return
7068
# We already know that node is not a join-node, thus to rewire, we only need

0 commit comments

Comments
 (0)