Commit fb0b88e
committed
Fix invalid escape sequence warning
Summary: Python starts warning in 3.6+ about invalid escape sequences in
strings. These regexes currently trigger that warning, but we can fix
that easily by converting them to raw strings instead.
Test Plan: For each string changed, tested that '$str' == r'$str' in the
python shell. ran tox and confirmed it still passed for py37, py38,
py39 and py3101 parent c1855c5 commit fb0b88e
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
167 | 167 | | |
168 | 168 | | |
169 | 169 | | |
170 | | - | |
| 170 | + | |
171 | 171 | | |
172 | 172 | | |
173 | 173 | | |
| |||
0 commit comments