Another suggestion for anyone editing Python: please always use a live linter (flake8 being the preferred option). Most editors support this and it can catch all sorts of things that may pass by otherwise, including serious errors such as undefined variables (of which I've found a surprising number on master).
Russell Owen
added a comment - Another suggestion for anyone editing Python: please always use a live linter (flake8 being the preferred option). Most editors support this and it can catch all sorts of things that may pass by otherwise, including serious errors such as undefined variables (of which I've found a surprising number on master).
Russell Owen, here's another even smaller one; just a switch from tabs to spaces.