Skip to content

Commit

Permalink
Another linting fix
Browse files Browse the repository at this point in the history
Signed-off-by: aapozd <[email protected]>
  • Loading branch information
aaletov committed May 25, 2024
1 parent 3b21f85 commit 4350b38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint==3.2.2
pip install pylint
- name: Analysing the code with pylint
run: |
pylint --rcfile ${{ github.workspace }}/pylintrc \
--disable=import-error \
--fail-under 5 \
--fail-on E \
${{ github.workspace }}/open_pcc_metric
3 changes: 2 additions & 1 deletion open_pcc_metric/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from . import handler

if __name__ == "__main__":
handler.cli()
# pylint: disable-next=no-value-for-parameter
handler.cli()

0 comments on commit 4350b38

Please sign in to comment.