1
Fork 0
mirror of https://github.com/RGBCube/VReplBot synced 2025-07-24 23:17:44 +00:00

Rename repl to playground

This commit is contained in:
RGBCube 2023-01-31 20:19:00 +03:00
parent fdeb115212
commit b787bb4fd9

View file

@ -26,10 +26,10 @@ async def get_message_content(channel: TextChannel, ref: MessageReference) -> st
return message.content return message.content
class REPL( class Playground(
Cog, Cog,
name = "REPL", name = "Playground",
description = "REPL (Read, Eval, Print, Loop) commands.", description = "V Playground commands.",
): ):
def __init__(self, bot: ReplBot) -> None: def __init__(self, bot: ReplBot) -> None:
self.bot = bot self.bot = bot
@ -138,4 +138,4 @@ class REPL(
async def setup(bot: ReplBot) -> None: async def setup(bot: ReplBot) -> None:
await bot.add_cog(REPL(bot)) await bot.add_cog(Playground(bot))