Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix invalid escape sequence in client test regexps
The original error printed by mypy: ``` tests/test_client.py:29: SyntaxWarning: invalid escape sequence '\(' "Dispatch received an invalid authentication token \(check DISPATCH_API_KEY is correct\)", tests/test_client.py:40: SyntaxWarning: invalid escape sequence '\(' "Dispatch received an invalid authentication token \(check api_key is correct\)", ``` Luckily in python all unrecognized escape sequences are left in the string unchanged, so it still worked.
- Loading branch information