Skip to content

Commit

Permalink
py: Disable E275, it's a new lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Feb 8, 2024
1 parent 50e54a4 commit e6481e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/pyln-client/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ check-version:
[ "`poetry run python3 -c 'from pyln import $(PKG); print($(PKG).__version__)'`" = "$(VERSION)" ] || exit 1

check-flake8:
flake8 --ignore=E501,E731,W503,E741 pyln tests
flake8 --ignore=E501,E731,W503,E741,E275 pyln tests

check-pytest:
pytest tests
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-testing/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ check-version:
[ "`poetry run python3 -c 'from pyln import $(PKG); print($(PKG).__version__)'`" = "$(VERSION)" ] || exit 1

check-flake8:
flake8 --ignore=E501,E731,W503,E741 --exclude '*_pb2*.py,grpc2py.py' pyln tests
flake8 --ignore=E501,E731,W503,E741,E275 --exclude '*_pb2*.py,grpc2py.py' pyln tests

check-pytest:
pytest tests
Expand Down

0 comments on commit e6481e1

Please sign in to comment.