(hopefully) final pylint change
changed from per-file pylint to a pylint config file
This commit is contained in:
parent
83ec43ee21
commit
4043825b71
2 changed files with 5 additions and 1 deletions
5
.pylintrc
Normal file
5
.pylintrc
Normal file
|
@ -0,0 +1,5 @@
|
|||
[MESSAGES CONTROL]
|
||||
disable=
|
||||
missing-module-docstring,
|
||||
missing-function-docstring,
|
||||
missing-class-docstring
|
1
main.py
1
main.py
|
@ -1,4 +1,3 @@
|
|||
# pylint: disable=missing-module-docstring, missing-function-docstring, missing-class-docstring
|
||||
import asyncio
|
||||
import os
|
||||
from dotenv import load_dotenv
|
||||
|
|
Loading…
Reference in a new issue