Fix typo in setup_hook docstring

This commit is contained in:
Joakim Hellsén 2025-08-17 02:02:27 +02:00
commit 158c88c57e
2 changed files with 5 additions and 2 deletions

View file

@ -5,6 +5,8 @@
"audioop",
"automerge",
"buildx",
"CLAHE",
"Denoise",
"denoising",
"docstrings",
"dotenv",
@ -15,6 +17,7 @@
"imdecode",
"imencode",
"IMREAD",
"IMWRITE",
"isort",
"killyoy",
"levelname",

View file

@ -46,7 +46,7 @@ class LoviBotClient(discord.Client):
self.tree = app_commands.CommandTree(self)
async def setup_hook(self) -> None:
"""Sync commands globaly."""
"""Sync commands globally."""
await self.tree.sync()
async def on_ready(self) -> None: