aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arthur/exts/fun/devops_rules.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/arthur/exts/fun/devops_rules.py b/arthur/exts/fun/devops_rules.py
index 26e1b6b..bdc24fa 100644
--- a/arthur/exts/fun/devops_rules.py
+++ b/arthur/exts/fun/devops_rules.py
@@ -52,9 +52,10 @@ class Rules(Cog):
)
@rules_group.command(name="refresh", aliases=("fetch", "update"))
- async def update_rules(self, _: Context) -> None:
+ async def update_rules(self, ctx: Context) -> None:
"""Re-fetch the list of rules from notion."""
await self.cog_load()
+ await ctx.reply(":+1:")
async def setup(bot: KingArthur) -> None: