We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 055b49f commit c24f7edCopy full SHA for c24f7ed
marimo/_server/sessions/session_manager.py
@@ -175,7 +175,7 @@ def create_session(
175
extensions.append(
176
SessionFileWatcherExtension(
177
self._watcher_manager,
178
- self._file_change_coordinator.handle_change,
+ self._handle_file_change,
179
)
180
181
@@ -214,6 +214,11 @@ def _create_file_change_coordinator(self) -> FileChangeCoordinator:
214
215
return FileChangeCoordinator(reload_strategy)
216
217
+ async def _handle_file_change(
218
+ self, file_path: Path, session: Session
219
+ ) -> None:
220
+ await self._file_change_coordinator.handle_change(file_path, session)
221
+
222
async def rename_session(
223
self, session_id: SessionId, new_path: str
224
) -> tuple[bool, Optional[str]]:
0 commit comments