Nit: Missing whitespace around =
.
The flake8
rule set enforced by Travis is a bit lax, but since this is brand new code I suggest following all the advice given by flake8
to avoid any Python style nits :-)
0$ flake8 --ignore=E501 msvc-autogen.py # E501: line length
1msvc-autogen.py:6:11: E225 missing whitespace around operator
2msvc-autogen.py:27:1: E302 expected 2 blank lines, found 1
3msvc-autogen.py:29:20: E225 missing whitespace around operator
4msvc-autogen.py:33:79: E713 test for membership should be 'not in'
5msvc-autogen.py:36:32: E225 missing whitespace around operator
6msvc-autogen.py:39:39: E231 missing whitespace after ','
7msvc-autogen.py:41:32: E225 missing whitespace around operator
8msvc-autogen.py:45:1: E302 expected 2 blank lines, found 1
9msvc-autogen.py:58:1: E305 expected 2 blank lines after class or function definition, found 1