From 2543563af1f50f9bf8f6ea2b618e2e07cd247624 Mon Sep 17 00:00:00 2001 From: cswimr Date: Sun, 26 Jan 2025 14:10:33 +0000 Subject: [PATCH] fix(hotreload): ruff fix --- hotreload/hotreload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotreload/hotreload.py b/hotreload/hotreload.py index 8a48501..254ae7f 100644 --- a/hotreload/hotreload.py +++ b/hotreload/hotreload.py @@ -52,7 +52,7 @@ class HotReload(commands.Cog): async def get_paths(self) -> tuple[Path]: """Retrieve user defined paths.""" - cog_manager = self.bot._cog_mgr + cog_manager = self.bot._cog_mgr # noqa: SLF001 # We have to use this private method because there is no public API to get user defined paths cog_paths = await cog_manager.user_defined_paths() return (Path(path) for path in cog_paths)