From 83ec43ee2150c253940509c75879a66ebc609c11 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh <102361830+SeaswimmerTheFsh@users.noreply.github.com> Date: Mon, 19 Jun 2023 17:15:19 -0400 Subject: [PATCH] more pylint fixes --- main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index e204b66..2786d14 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,4 @@ -# pylint: disable=missing-module-docstring +# pylint: disable=missing-module-docstring, missing-function-docstring, missing-class-docstring import asyncio import os from dotenv import load_dotenv @@ -12,10 +12,10 @@ api_url = os.getenv('API_URL') prefix = os.getenv('PREFIX') class Client(commands.CommandsClient): -# This class contains all of the commands the bot uses. + # This class contains all of the commands the bot uses. async def get_prefix(self, message: revolt.Message): return prefix - + @commands.command() async def ping(self, ctx: commands.Context): # Checks if the bot is running.