Skip to content

Commit e75f300

Browse files
committed
Fix error handler NoUpdate call
1 parent dd24cb9 commit e75f300

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash/_callback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ def add_context(*args, **kwargs):
507507
if not multi:
508508
output_value = NoUpdate()
509509
else:
510-
output_value = [NoUpdate for _ in output_spec]
510+
output_value = [NoUpdate() for _ in output_spec]
511511
else:
512512
raise err
513513

0 commit comments

Comments
 (0)