diff options
| author | 2022-03-28 09:18:53 +0400 | |
|---|---|---|
| committer | 2022-03-28 09:18:53 +0400 | |
| commit | 7f78aa493590e9533905b942c6b18653fc0108ea (patch) | |
| tree | 615d2e44b72e534821a76644471cebb31c87b898 | |
| parent | Update pydis_site/apps/content/resources/guides/python-guides/subclassing_bot.md (diff) | |
Update subclassing_bot.md
| -rw-r--r-- | pydis_site/apps/content/resources/guides/python-guides/subclassing_bot.md | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/pydis_site/apps/content/resources/guides/python-guides/subclassing_bot.md b/pydis_site/apps/content/resources/guides/python-guides/subclassing_bot.md index 1efbb571..060dfacb 100644 --- a/pydis_site/apps/content/resources/guides/python-guides/subclassing_bot.md +++ b/pydis_site/apps/content/resources/guides/python-guides/subclassing_bot.md @@ -47,7 +47,7 @@ class CustomBot(commands.Bot):      def hello(self):              return 'Hello World' -#Here you set the *args and **kwargs +# Here you set the *args and **kwargs  bot = CustomBot(command_prefix="!", intents=discord.Intents.default())  @bot.command() | 
