Skip to content

Commit

Permalink
Add additional skip handling
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Feb 27, 2024
1 parent 86bb623 commit 23364b9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion panel/param.py
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,10 @@ async def _eval_async(self, awaitable):
except Skip:
pass
else:
self._update_inner(await awaitable)
try:
self._update_inner(await awaitable)
except Skip:
pass
except Exception as e:
if not curdoc or (has_context and curdoc.session_context):
raise e
Expand Down

0 comments on commit 23364b9

Please sign in to comment.