Skip to content

Commit 589865b

Browse files
committed
canvasmain: Fix typing error in render_error_details
1 parent 9afeaec commit 589865b

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
@@ -2738,7 +2738,7 @@ def collectall(
27382738
IncompatibleChannelTypeError))
27392739
)
27402740
contents = []
2741-
if missing_node_defs is not None:
2741+
if missing_node_defs:
27422742
contents.extend([
27432743
"Missing node definitions:",
27442744
*[" \N{BULLET} " + e.args[0] for e in missing_node_defs],

0 commit comments

Comments
 (0)