fix(hotreload): pylint fixes
This commit is contained in:
parent
c0c84358ef
commit
ab22b791d1
1 changed files with 3 additions and 2 deletions
|
@ -21,7 +21,7 @@ class HotReload(commands.Cog):
|
||||||
|
|
||||||
__author__ = ["[cswimr](https://www.coastalcommits.com/cswimr)"]
|
__author__ = ["[cswimr](https://www.coastalcommits.com/cswimr)"]
|
||||||
__git__ = "https://www.coastalcommits.com/cswimr/SeaCogs"
|
__git__ = "https://www.coastalcommits.com/cswimr/SeaCogs"
|
||||||
__version__ = "1.4.1"
|
__version__ = "1.4.2"
|
||||||
__documentation__ = "https://seacogs.coastalcommits.com/hotreload/"
|
__documentation__ = "https://seacogs.coastalcommits.com/hotreload/"
|
||||||
|
|
||||||
def __init__(self, bot: Red) -> None:
|
def __init__(self, bot: Red) -> None:
|
||||||
|
@ -60,6 +60,7 @@ class HotReload(commands.Cog):
|
||||||
]
|
]
|
||||||
return "\n".join(text)
|
return "\n".join(text)
|
||||||
|
|
||||||
|
# pylint: disable=protected-access
|
||||||
async def get_paths(self) -> Generator[Path, None, None]:
|
async def get_paths(self) -> Generator[Path, None, None]:
|
||||||
"""Retrieve user defined paths."""
|
"""Retrieve user defined paths."""
|
||||||
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_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
|
||||||
|
@ -91,7 +92,6 @@ class HotReload(commands.Cog):
|
||||||
@commands.group(name="hotreload")
|
@commands.group(name="hotreload")
|
||||||
async def hotreload_group(self, ctx: commands.Context) -> None:
|
async def hotreload_group(self, ctx: commands.Context) -> None:
|
||||||
"""HotReload configuration commands."""
|
"""HotReload configuration commands."""
|
||||||
pass
|
|
||||||
|
|
||||||
@hotreload_group.command(name="notifychannel")
|
@hotreload_group.command(name="notifychannel")
|
||||||
async def hotreload_notifychannel(self, ctx: commands.Context, channel: discord.TextChannel) -> None:
|
async def hotreload_notifychannel(self, ctx: commands.Context, channel: discord.TextChannel) -> None:
|
||||||
|
@ -155,6 +155,7 @@ class HotReloadHandler(RegexMatchingEventHandler):
|
||||||
loop=self.cog.bot.loop,
|
loop=self.cog.bot.loop,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# pylint: disable=protected-access
|
||||||
async def reload_cogs(self, cog_names: Sequence[str], paths: Sequence[Path]) -> None:
|
async def reload_cogs(self, cog_names: Sequence[str], paths: Sequence[Path]) -> None:
|
||||||
"""Reload modified cogs."""
|
"""Reload modified cogs."""
|
||||||
if not self.compile_modified_files(cog_names, paths):
|
if not self.compile_modified_files(cog_names, paths):
|
||||||
|
|
Loading…
Add table
Reference in a new issue