From d389cb0db06c6f3ddf13c047569be0e11f7fd71c Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh <102361830+SeaswimmerTheFsh@users.noreply.github.com> Date: Mon, 19 Jun 2023 22:25:16 -0400 Subject: [PATCH] renamed Client class to client --- main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index ab56f4b..9ae4d64 100644 --- a/main.py +++ b/main.py @@ -13,7 +13,7 @@ token = os.getenv('TOKEN') api_url = os.getenv('API_URL') prefix = os.getenv('PREFIX') -class Client(commands.CommandsClient): +class client(commands.CommandsClient): # This class contains all of the commands the bot uses. async def get_prefix(self, message: revolt.Message, input: str = prefix): return input @@ -51,14 +51,14 @@ class Client(commands.CommandsClient): dotenv.set_key(env, 'PREFIX', new_prefix) await ctx.message.reply(f"Prefix has been changed from `{prefix}` to `{new_prefix}`!") print(f"Prefix changed: {prefix} → {new_prefix}") - await Client.get_prefix(ctx.message, new_prefix) + await client.get_prefix(ctx.message, new_prefix) else: await ctx.message.reply(f"The prefix is currently set to `{prefix}`.") async def main(): # This function logs into the bot user. async with aiohttp.ClientSession() as session: - client = Client(session, token, api_url=api_url) + client = client(session, token, api_url=api_url) await client.start() asyncio.run(main())