paypal-reports/.flake8

9 lines
272 B
Text
Raw Normal View History

2022-12-17 14:09:47 +11:00
# Flake8 Python linting configuration
# https://flake8.pycqa.org/en/latest/
[flake8]
# W503 is line break before binary operator - I think reads better this way.
# E501 line is too long - who cares.
# E731 do not assign a lambda expression - pah!
ignore = E501,E731,W503