diff options
author | 2023-07-23 21:30:33 +0100 | |
---|---|---|
committer | 2023-07-23 21:30:33 +0100 | |
commit | c4c83f8f46465c968a9c9f3e851b3f59c66029c7 (patch) | |
tree | 0f51a683f06facb20b11870deb6162f66c43da5d /bot/exts/utilities/reddit.py | |
parent | Merge pull request #1223 from Robin5605/undeprecate-bookmark (diff) |
Re-enable the reddit autoposter (#1332)
Diffstat (limited to 'bot/exts/utilities/reddit.py')
-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 cfc70d85..f8e358de 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.""" |