Skip to content

Commit 23b7b6b

Browse files
committed
canvasmain: Fix typing error in render_error_details
1 parent c4e03a0 commit 23b7b6b

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
@@ -2698,7 +2698,7 @@ def collectall(
26982698
IncompatibleChannelTypeError))
26992699
)
27002700
contents = []
2701-
if missing_node_defs is not None:
2701+
if missing_node_defs:
27022702
contents.extend([
27032703
"Missing node definitions:",
27042704
*[" \N{BULLET} " + e.args[0] for e in missing_node_defs],

0 commit comments

Comments
 (0)