Skip to content

Commit

Permalink
refactor(core)!: fix AttributeError: wrong '_run_core_reload' method
Browse files Browse the repository at this point in the history
  • Loading branch information
HsiangNianian committed Jul 6, 2024
1 parent 9558df0 commit 9f7019a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hrc/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ async def _run(self) -> None:

hot_reload_task = None
if self._hot_reload: # pragma: no cover
hot_reload_task = asyncio.create_task(self._run_core_reload())
hot_reload_task = asyncio.create_task(self._run_hot_reload())

for core_run_hook_func in self._core_run_hooks:
await core_run_hook_func(self)
Expand Down

0 comments on commit 9f7019a

Please sign in to comment.