diff --git a/texteditor/texteditor.py b/texteditor/texteditor.py index 5ed418d34..79609ba90 100644 --- a/texteditor/texteditor.py +++ b/texteditor/texteditor.py @@ -33,7 +33,7 @@ class TextEditor(commands.Cog): """ __author__ = "Kreusada" - __version__ = "3.4.3" + __version__ = "3.4.4" def __init__(self, bot): self.bot = bot @@ -160,7 +160,7 @@ async def editor_permutate(self, ctx: commands.Context, *, text: str): message += "\n" + join file = None - await ctx.send(message=message, file=file) + await ctx.send(message, file=file) @editor.command(name="wrap") async def editor_wrap( @@ -260,4 +260,4 @@ async def editor_levenshtein(self, ctx: commands.Context, word1: str, word2: str distance = matrix[len(word1)][len(word2)] # Bottom right cell msg = f"The Levenshtein distance between '{word1}' and '{word2}' is {distance}" - await ctx.send(msg) \ No newline at end of file + await ctx.send(msg)