From 2282ca5cd86e37b8a85b675efe3241781e38bdc2 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Sun, 1 May 2022 16:10:40 -0600 Subject: [PATCH] Add haskell formatting to cloc output --- jarvis/cogs/dev.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jarvis/cogs/dev.py b/jarvis/cogs/dev.py index 4d2b743..06dc1ec 100644 --- a/jarvis/cogs/dev.py +++ b/jarvis/cogs/dev.py @@ -272,7 +272,7 @@ class DevCog(Scale): output = subprocess.check_output( # noqa: S603, S607 ["tokei", "-C", "--sort", "code"] ).decode("UTF-8") - await ctx.send(f"```\n{output}\n```") + await ctx.send(f"```haskell\n{output}\n```") def setup(bot: Snake) -> None: