[flake8]

# Lots and lots of checks are disabled on RHEL-8 =(

# E741 ambiguous variable name
# W503 line break occurred after a binary operator
# W191 indentation contains tabs
# E501 line too long
# E128 continuation line under-indented for visual indent
# E231 missing whitespace after ':'
# W504 line break after binary operator
# E203 whitespace before ':'
ignore = E741,W503,W191,E501,E128,E231,W504,E203
