From 105e80156a7e827361868dc02419937817f1d1c5 Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Sun, 4 Feb 2024 22:15:38 +0000 Subject: [PATCH] Give feedback to invoker when devops rules are successfully re-fetched --- arthur/exts/fun/devops_rules.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 @@ async def rules_group(self, ctx: Context, rules: Greedy[int]) -> None: ) @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: