Skip to content

Commit

Permalink
Merge pull request #7 from davidalvaz/fix_makefile
Browse files Browse the repository at this point in the history
fix: disable pylint W1202 message
  • Loading branch information
SudKul authored Nov 8, 2021
2 parents 817acb0 + a50e359 commit c7f46a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project-ml-microservice-kubernetes/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ lint:
hadolint Dockerfile
# This is a linter for Python source code linter: https://www.pylint.org/
# This should be run from inside a virtualenv
pylint --disable=R,C,W1203 app.py
pylint --disable=R,C,W1203,W1202 app.py

all: install lint test

0 comments on commit c7f46a6

Please sign in to comment.