You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: shiny/bookmark/_bookmark.py
+32-2Lines changed: 32 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -86,8 +86,16 @@ class Bookmark(ABC):
86
86
87
87
# TODO: Barret - This feels like it needs to be a weakref
88
88
_session_root: Session
89
+
"""
90
+
The root session object (most likely a `AppSession` object).
91
+
"""
89
92
90
93
_store: BookmarkStore|MISSING_TYPE
94
+
"""
95
+
Session specific bookmark store value.
96
+
97
+
This value could help determine how session state is saved. However, app authors will not be able to change how the session is restored as the server function will run after the session has been restored.
0 commit comments