diff options
Diffstat (limited to 'pydis_site/apps/content')
| -rw-r--r-- | pydis_site/apps/content/resources/guides/python-guides/subclassing_bot.md | 4 | 
1 files changed, 2 insertions, 2 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 f6d554eb..6b798400 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 @@ -14,8 +14,8 @@ There are two ways to subclass `commands.Bot`, as shown below:  class CustomBot(commands.Bot):      def __init__(self):          super().__init__( -            command_prefix = #your prefix here as a string -            intents = #your intents here +            command_prefix=#your prefix here as a string +            intents=#your intents here              #other kwargs can be put here          )          #custom bot attributes can be set here, for example:  |