From b787bb4fd9c6b2cb538eb121f75bae5e38220a79 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Tue, 31 Jan 2023 20:19:00 +0300 Subject: [PATCH] Rename repl to playground --- v_repl_bot/cogs/{repl.py => playground.py} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename v_repl_bot/cogs/{repl.py => playground.py} (97%) diff --git a/v_repl_bot/cogs/repl.py b/v_repl_bot/cogs/playground.py similarity index 97% rename from v_repl_bot/cogs/repl.py rename to v_repl_bot/cogs/playground.py index 4e30374..a61b747 100644 --- a/v_repl_bot/cogs/repl.py +++ b/v_repl_bot/cogs/playground.py @@ -26,10 +26,10 @@ async def get_message_content(channel: TextChannel, ref: MessageReference) -> st return message.content -class REPL( +class Playground( Cog, - name = "REPL", - description = "REPL (Read, Eval, Print, Loop) commands.", + name = "Playground", + description = "V Playground commands.", ): def __init__(self, bot: ReplBot) -> None: self.bot = bot @@ -138,4 +138,4 @@ class REPL( async def setup(bot: ReplBot) -> None: - await bot.add_cog(REPL(bot)) + await bot.add_cog(Playground(bot))