more pylint changes
This commit is contained in:
parent
83637385fe
commit
fd55b375b4
2 changed files with 1 additions and 3 deletions
2
.github/workflows/pylint.yml
vendored
2
.github/workflows/pylint.yml
vendored
|
@ -22,6 +22,4 @@ jobs:
|
||||||
pip install python-dotenv
|
pip install python-dotenv
|
||||||
- name: Analysing the code with pylint
|
- name: Analysing the code with pylint
|
||||||
run: |
|
run: |
|
||||||
pylint OPTIONS --generate-rcfile > .pylintrc
|
|
||||||
pylint OPTIONS --disable=C0114
|
|
||||||
pylint $(git ls-files '*.py')
|
pylint $(git ls-files '*.py')
|
||||||
|
|
2
main.py
2
main.py
|
@ -1,4 +1,4 @@
|
||||||
# Imports
|
# pylint: disable=missing-module-docstring
|
||||||
import asyncio
|
import asyncio
|
||||||
import os
|
import os
|
||||||
from dotenv import load_dotenv
|
from dotenv import load_dotenv
|
||||||
|
|
Loading…
Reference in a new issue