Format code with YAPF
masterThe project uses Google YAPF to enforce PEP-8 compliance. You must run the formatter before committing code, or the build will fail.
To format your code:
make fmtTo disable formatting for specific blocks of code, use the following comments:
# yapf: disable
FOO = { ... }
# yapf: enable