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=
|
disable=
|
||||||
missing-module-docstring,
|
missing-module-docstring,
|
||||||
missing-function-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 asyncio
|
||||||
import os
|
import os
|
||||||
from dotenv import load_dotenv
|
|
||||||
import aiohttp
|
import aiohttp
|
||||||
import revolt
|
import revolt
|
||||||
from revolt.ext import commands
|
from revolt.ext import commands
|
||||||
import time
|
from dotenv import load_dotenv
|
||||||
|
|
||||||
load_dotenv()
|
load_dotenv()
|
||||||
token = os.getenv('TOKEN')
|
token = os.getenv('TOKEN')
|
||||||
|
|
Loading…
Reference in a new issue