Request that a ReloadEvent be passed next into process_event
(self, files_modified: Sequence[str] = ())
| 545 | self._request_refresh() |
| 546 | |
| 547 | def request_reload(self, files_modified: Sequence[str] = ()) -> None: |
| 548 | """Request that a ReloadEvent be passed next into process_event""" |
| 549 | if self.watching_files: |
| 550 | self._request_reload(files_modified) |
| 551 | |
| 552 | def schedule_refresh(self, when: float = 0) -> None: |
| 553 | """Schedule a ScheduledRefreshRequestEvent for when. |
nothing calls this directly
no test coverage detected