From 5bd1e35e64d8a855b397baf8c5a6a21d63c2afe9 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Sun, 27 Jun 2021 18:45:38 -0600 Subject: [PATCH] Fix monospace error on UUID4 --- 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 d6ecf01..7c014f7 100644 --- a/jarvis/cogs/dev.py +++ b/jarvis/cogs/dev.py @@ -108,7 +108,7 @@ class DevCog(commands.Cog): await ctx.send(f"UUID{version} requires data.") return if version == 4: - await ctx.send(f"UUID4: `{uuid.uuid4()}``") + await ctx.send(f"UUID4: `{uuid.uuid4()}`") else: to_send = None if OID_VERIFY.match(data):