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.