8000 Ensure the order of Bokeh property changes and events is preserved by maximlt · Pull Request #8311 · holoviz/panel · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix type
  • Loading branch information
philippjfr committed Dec 1, 2025
commit 7cbf68bbebd9a9fc7d958b3f7bd30be9fb6a412d
2 changes: 1 addition & 1 deletion panel/io/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ class _state(param.Parameterized):
# Scheduled callbacks
_scheduled: ClassVar[dict[str, tuple[TIterator[int] | None, Callable[[], None]]]] = {}
_periodic: ClassVar[WeakKeyDictionary[Document, list[PeriodicCallback]]] = WeakKeyDictionary()
_change_callbacks: ClassVar[WeakKeyDictionary[Document, list[Callable[[], None]]]] = WeakKeyDictionary()
_change_callbacks: ClassVar[WeakKeyDictionary[Document, dict[str, Callable[[], Coroutine[Any, Any, None]]]]] = WeakKeyDictionary()

# Indicators listening to the busy state
_indicators: ClassVar[list[BooleanIndicator]] = []
Expand Down
Loading
0