Skip to content

Commit 50cbdb7

Browse files
committed
canvasmain: Fix typing error in render_error_details
1 parent 9886950 commit 50cbdb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orangecanvas/application/canvasmain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2737,7 +2737,7 @@ def collectall(
27372737
IncompatibleChannelTypeError))
27382738
)
27392739
contents = []
2740-
if missing_node_defs is not None:
2740+
if missing_node_defs:
27412741
contents.extend([
27422742
"Missing node definitions:",
27432743
*[" \N{BULLET} " + e.args[0] for e in missing_node_defs],

0 commit comments

Comments
 (0)