From ee1342bbc372ef1dd3e54ed53cde4d0b234f0327 Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Sun, 9 Jun 2024 23:16:28 +0100 Subject: [PATCH] Quote the @s --- src/cogs/ollama.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/cogs/ollama.py b/src/cogs/ollama.py index 20e6c80..17944cb 100644 --- a/src/cogs/ollama.py +++ b/src/cogs/ollama.py @@ -1207,7 +1207,7 @@ class Ollama(commands.Cog): This command may take a long time. """ if question: - question = f"@{ctx.author.display_name} asks: {question!r}" + question = f"'@{ctx.author.display_name}' asks: {question!r}" async with ctx.channel.typing(): await self.generate_truth(ctx, "trump", latest, question=question) @@ -1222,7 +1222,7 @@ class Ollama(commands.Cog): This command may take a long time. """ if question: - question = f"@{ctx.author.display_name} asks: {question!r}" + question = f"'@{ctx.author.display_name}' asks: {question!r}" async with ctx.channel.typing(): await self.generate_truth(ctx, "tate", latest, question=question) @@ -1237,7 +1237,7 @@ class Ollama(commands.Cog): This command may take a long time. """ if question: - question = f"@{ctx.author.display_name} asks: {question!r}" + question = f"'@{ctx.author.display_name}' asks: {question!r}" async with ctx.channel.typing(): await self.generate_truth(ctx, "Rishi Sunak", latest, question=question) @@ -1252,7 +1252,7 @@ class Ollama(commands.Cog): This command may take a long time. """ if question: - question = f"@{ctx.author.display_name} asks: {question!r}" + question = f"'@{ctx.author.display_name}' asks: {question!r}" async with ctx.channel.typing(): await self.generate_truth(ctx, "Tommy Robinson 🇬🇧", latest, question=question) @@ -1267,7 +1267,7 @@ class Ollama(commands.Cog): This command may take a long time. """ if question: - question = f"@{ctx.author.display_name} asks: {question!r}" + question = f"'@{ctx.author.display_name}' asks: {question!r}" async with ctx.channel.typing(): await self.generate_truth(ctx, "Laurence Fox", latest, question=question) @@ -1282,7 +1282,7 @@ class Ollama(commands.Cog): This command may take a long time. """ if question: - question = f"@{ctx.author.display_name} asks: {question!r}" + question = f"'@{ctx.author.display_name}' asks: {question!r}" async with ctx.channel.typing(): await self.generate_truth(ctx, "Nigel Farage", latest, question=question) @@ -1297,7 +1297,7 @@ class Ollama(commands.Cog): This command may take a long time. """ if question: - question = f"@{ctx.author.display_name} asks: {question!r}" + question = f"'@{ctx.author.display_name}' asks: {question!r}" async with ctx.channel.typing(): await self.generate_truth(ctx, "Keir Starmer", latest, question=question) @@ -1312,7 +1312,7 @@ class Ollama(commands.Cog): This command may take a long time. """ if question: - question = f"@{ctx.author.display_name} asks: {question!r}" + question = f"'@{ctx.author.display_name}' asks: {question!r}" async with ctx.channel.typing(): await self.generate_truth(ctx, "Boris Johnson", latest, question=question)