Hi trafficserver-dev, Now, all python code of ATS are formatted by autopep8 after some discussions on some PRs (#2097 and #2121). So, please run autopep8 before sending PRs include python code. Especially when you're adding tests using autest.
Steps are below. 1. Install autopep8 In most cases, you can install autopep8 via pip. ``` pip install autopep8 ``` 2. Run autopep8 ``` make autopep8 ``` If you use editor's supports, please note that we're using --max-line-lenght option with 132. And the setting is in the setup.cfg file under the top directory of ATS. # autopep8 https://pypi.python.org/pypi/autopep8/ Thanks, Masaori