Actions Security Insights Additional navigation options Commit Browse filesBrowse the repository at this point in the history New check was added to recent pycodestyle-2.5.0 and flake8 complains while building on Travis: ../utilities/bugtool/ovs-bugtool.in:767:17: E117 over-indented ../utiliti...
test.py:2:1: W191 indentation contains tabs return b ^ On new projects, spaces-only are strongly recommended over tabs. Okay: if True:\n return W191: if True:\n\treturn test.py:2:2: E117 over-indented return b ^ Use 4 spaces per indentation level. For really old code that you...