zulip/zerver/webhooks/github_legacy
Anders Kaseorg 037f696d26 Enable pycodestyle W605 (invalid escape sequence).
The only changes visible at the AST level, checked using
https://github.com/asottile/astpretty, are

zerver/lib/test_fixtures.py:
'\x1b\\[(1|0)m' ↦ '\\x1b\\[(1|0)m'
'\\[[X| ]\\] (\\d+_.+)\n' ↦ '\\[[X| ]\\] (\\d+_.+)\\n'

which is fine because re treats '\\x1b' and '\\n' the same way as
'\x1b' and '\n'.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2018-07-03 16:54:46 +02:00
..
fixtures
__init__.py
tests.py zerver/webhooks: Change use of typing.Text to str. 2018-05-10 14:19:49 -07:00
view.py Enable pycodestyle W605 (invalid escape sequence). 2018-07-03 16:54:46 +02:00