diff options
author | 2022-10-30 15:25:31 +0000 | |
---|---|---|
committer | 2022-10-30 15:25:31 +0000 | |
commit | a76d922b92baa4e0ec2cdfc5c26ff15cb976492a (patch) | |
tree | ead9dbfbf8d39fe4229c8f62d6ecf595769bd3ee | |
parent | Catch more status codes in Wolfram commands (#1136) (diff) | |
parent | updated bot/exts/core/help.py for Issue #1122 (diff) |
Merge pull request #1137 from DivyanshuBist/bug-issue1122-message-of-type-None
updated bot/exts/core/help.py for Issue #1122
-rw-r--r-- | bot/exts/core/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/core/help.py b/bot/exts/core/help.py index fa9c2e03..30deaff4 100644 --- a/bot/exts/core/help.py +++ b/bot/exts/core/help.py @@ -220,11 +220,11 @@ class HelpSession: async def prepare(self) -> None: """Sets up the help session pages, events, message and reactions.""" await self.build_pages() + await self.update_page() self._bot.add_listener(self.on_reaction_add) self._bot.add_listener(self.on_message_delete) - await self.update_page() self.add_reactions() def add_reactions(self) -> None: |