diff options
author | 2023-06-12 11:20:28 +0100 | |
---|---|---|
committer | 2023-06-12 11:20:28 +0100 | |
commit | a5d9f4cf4700f4cfcb431d52505615607b884623 (patch) | |
tree | 9d6cf5b38008a709d81be7b20192ded3ad0c7695 | |
parent | Bump rapidfuzz from 3.1.0 to 3.1.1 (#1291) (diff) |
Disable the r/python auto poster (#1296)
Otherwise this will error every morning while r/python isn't accessible
-rw-r--r-- | bot/exts/utilities/reddit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utilities/reddit.py b/bot/exts/utilities/reddit.py index f8e358de..cfc70d85 100644 --- a/bot/exts/utilities/reddit.py +++ b/bot/exts/utilities/reddit.py @@ -37,7 +37,7 @@ class Reddit(Cog): self.access_token = None self.client_auth = BasicAuth(RedditConfig.client_id.get_secret_value(), RedditConfig.secret.get_secret_value()) - self.auto_poster_loop.start() + # self.auto_poster_loop.start() async def cog_unload(self) -> None: """Stop the loop task and revoke the access token when the cog is unloaded.""" |