Commit 1009813
authored
Fix a
The warning is thrown when Python imports the file,
and manifests in the test suite with this error:
```
jwt/api_jwt.py:326
/home/runner/work/pyjwt/pyjwt/jwt/api_jwt.py:326: SyntaxWarning: invalid escape sequence '\*'
(e.g. HS\* and RS\*).
```
(This manifests as a `DeprecationWarning` as well,
depending on the Python interpreter and version.)SyntaxWarning caused by invalid escape sequences (#1103)1 parent 3f9bcea commit 1009813
2 files changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
19 | 20 | | |
20 | 21 | | |
21 | 22 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
323 | 323 | | |
324 | 324 | | |
325 | 325 | | |
326 | | - | |
| 326 | + | |
327 | 327 | | |
328 | 328 | | |
329 | 329 | | |
| |||
0 commit comments