aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Diabolical5777 <[email protected]>2022-03-28 09:18:08 +0400
committerGravatar GitHub <[email protected]>2022-03-28 09:18:08 +0400
commitf228039ff07aeac48729074c5eb1efeb16b043b4 (patch)
treece81cb28801a7f60f483d2a305b74e6305f20175
parentUpdate pydis_site/apps/content/resources/guides/python-guides/subclassing_bot.md (diff)
Update pydis_site/apps/content/resources/guides/python-guides/subclassing_bot.md
Co-authored-by: Shom770 <[email protected]>
-rw-r--r--pydis_site/apps/content/resources/guides/python-guides/subclassing_bot.md2
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 49ad59f0..1efbb571 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
@@ -40,7 +40,7 @@ class CustomBot(commands.Bot):
def __init__(self, *args, **kwargs): # the key-word arguments are not specified here, unlike the example above
super().__init__(*args, **kwargs)
- #custom bot attributes can be set here, for example:
+ # custom bot attributes can be set here, for example:
self.example_string = 'This is an example!'
# You can add a custom bot method, anyhting can be done in this function. This is an example: