Skip to content

Commit

Permalink
Fix for --disable C0326
Browse files Browse the repository at this point in the history
Error:

Command line:1:0: R0022: Useless option value for '--disable', 'C0326' was removed from pylint, see pylint-dev/pylint#3577. (useless-option-value)
  • Loading branch information
khanabid20 committed Jun 8, 2022
1 parent 3a9305c commit 649d5ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Lint code
run: |
flake8 --ignore=E501,E231 *.py
pylint --disable=C0301 --disable=C0326 *.py
pylint --disable=C0301 *.py
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
- name: Run unit tests
Expand Down

0 comments on commit 649d5ce

Please sign in to comment.