fixing pylint errors

This commit is contained in:
SeaswimmerTheFsh 2023-06-20 01:05:42 -04:00
parent c9fa4a2845
commit 3d26748dfc

View file

@ -15,13 +15,13 @@ prefix = os.getenv('PREFIX')
class Client(commands.CommandsClient):
# This class contains all of the commands the bot uses.
async def get_prefix(self, message: revolt.Message, input: str | None = None):
async def get_prefix(self, message: revolt.Message, input: str | None = None): # pylint: disable=W0622
if input is None:
return prefix
return input
async def on_message(self, message: revolt.Message):
if 'PREFIX' not in os.environ or prefix == None:
if 'PREFIX' not in os.environ or prefix is None:
if message.author == self.user.owner:
await message.channel.send("You have started the bot without setting the `prefix` environment variable!\nIt has been set to `temp!` automatically, please change it using `temp!prefix <new prefix>`.")
print("ERROR: prefix_env_var check failed! Prefix set to 'temp!'.")
@ -68,7 +68,7 @@ class Client(commands.CommandsClient):
@commands.is_bot_owner()
async def prefix(self, ctx: commands.Context, new_prefix: str = None):
# This command sets the bot's prefix. CURRENTLY PARTIALLY BROKEN
if new_prefix is not None and commands.is_bot_owner == True:
if new_prefix is not None and True(commands.is_bot_owner):
await Client.prefix_change(self=self, message=ctx.message, new_prefix=new_prefix)
else:
await ctx.message.reply(f"The prefix is currently set to `{prefix}`.")