diff options
author | 2022-03-28 09:17:37 +0400 | |
---|---|---|
committer | 2022-03-28 09:17:37 +0400 | |
commit | 671660b8f0a930b2c80801df0e2c62ef8c86da83 (patch) | |
tree | 5b0f049e4a720205bf3fc1aa9d0a4492180d3ddb | |
parent | Update 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.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 37f7a9d2..49ad59f0 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 @@ -43,7 +43,7 @@ class CustomBot(commands.Bot): #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: + # You can add a custom bot method, anyhting can be done in this function. This is an example: def hello(self): return 'Hello World' |