Skip to content

Commit

Permalink
docs: argument of set cannot be None
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Nov 24, 2023
1 parent f61d09f commit 682ce62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solara/website/components/notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _cleanup():
with ExceptionGuard():
with solara.AppLayout(navigation=False, toolbar_dark=True):
# we don't want to listen to reactive variables
copy = set(solara.toestand.thread_local.reactive_used)
copy = set(solara.toestand.thread_local.reactive_used or [])
try:
last_expression = executor()
finally:
Expand Down

0 comments on commit 682ce62

Please sign in to comment.