From 877694dd573dcca21f7ea44e759dcdacf25d537e Mon Sep 17 00:00:00 2001 From: Bradley Reynolds Date: Wed, 25 Oct 2023 20:35:02 -0500 Subject: [PATCH] Remove inconsistent punctuation from command output (#187) Signed-off-by: Bradley Reynolds --- src/bot/exts/dragonfly/dragonfly.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bot/exts/dragonfly/dragonfly.py b/src/bot/exts/dragonfly/dragonfly.py index 7ec143c..76c3f14 100644 --- a/src/bot/exts/dragonfly/dragonfly.py +++ b/src/bot/exts/dragonfly/dragonfly.py @@ -236,10 +236,10 @@ async def scan_loop_error(self: Self, exc: BaseException) -> None: async def start(self: Self, ctx: commands.Context) -> None: """Start the scan task.""" if self.scan_loop.is_running(): - await ctx.send("Task is already running.") + await ctx.send("Task is already running") else: self.scan_loop.start() - await ctx.send("Started task...") + await ctx.send("Started task") @commands.has_role(Roles.vipyr_security) @commands.command() @@ -248,12 +248,12 @@ async def stop(self: Self, ctx: commands.Context, force: bool = False) -> None: if self.scan_loop.is_running(): if force: self.scan_loop.cancel() - await ctx.send("Forcing shutdown...") + await ctx.send("Forcing shutdown") else: self.scan_loop.stop() - await ctx.send("Executing graceful shutdown...") + await ctx.send("Executing graceful shutdown") else: - await ctx.send("Task is not running.") + await ctx.send("Task is not running") @discord.app_commands.checks.has_role(Roles.vipyr_security) @discord.app_commands.command(name="lookup", description="Scans a package")