pylint fixes
fixed import order and disabled line-too-long pylint rule
This commit is contained in:
parent
7a05632bf0
commit
b0fbe87fc0
2 changed files with 4 additions and 3 deletions
|
@ -2,4 +2,5 @@
|
|||
disable=
|
||||
missing-module-docstring,
|
||||
missing-function-docstring,
|
||||
missing-class-docstring
|
||||
missing-class-docstring,
|
||||
line-too-long
|
4
main.py
4
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')
|
||||
|
|
Loading…
Reference in a new issue