aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Diabolical5777 <[email protected]>2022-03-28 09:17:30 +0400
committerGravatar GitHub <[email protected]>2022-03-28 09:17:30 +0400
commit9d0391b330adfbc994e1b1a344dbc1e4f1a2c76d (patch)
treec71d52e77f41bbaabd0a56819c24a0c553947d24
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 be9bb6e8..37f7a9d2 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
@@ -37,7 +37,7 @@ bot.run(token)
Or
```py
class CustomBot(commands.Bot):
- def __init__(self, *args, **kwargs): #the key-word arguments are not specified here, unlike the example above
+ 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: