From b0fbe87fc0576a079171f732ceaf8b27280661ae Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh <102361830+SeaswimmerTheFsh@users.noreply.github.com> Date: Mon, 19 Jun 2023 19:10:03 -0400 Subject: [PATCH] pylint fixes fixed import order and disabled line-too-long pylint rule --- .pylintrc | 3 ++- main.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.pylintrc b/.pylintrc index ee29acf..0bfd9c0 100644 --- a/.pylintrc +++ b/.pylintrc @@ -2,4 +2,5 @@ disable= missing-module-docstring, missing-function-docstring, - missing-class-docstring \ No newline at end of file + missing-class-docstring, + line-too-long \ No newline at end of file diff --git a/main.py b/main.py index 0c0739e..9454ac9 100644 --- a/main.py +++ b/main.py @@ -1,10 +1,10 @@ +import time import asyncio import os -from dotenv import load_dotenv import aiohttp import revolt from revolt.ext import commands -import time +from dotenv import load_dotenv load_dotenv() token = os.getenv('TOKEN')