(self)
| 105 | await gather(*[self.plugins[plugin_name].stop() for plugin_name in self.plugins]) |
| 106 | |
| 107 | async def enable_reload_wait(self): |
| 108 | if self.live_reload: |
| 109 | await sleep(10) |
| 110 | if self.watcher and self.live_reload: |
| 111 | self.logger.info("Hot reload enabled") |
| 112 | self.watcher.disabled = False |
| 113 | |
| 114 | async def disable_reload(self): |
| 115 | if self.watcher: |