We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2daefe7 commit 33a9dafCopy full SHA for 33a9daf
tests/test_errors.py
@@ -24,12 +24,7 @@ def test_extension_no_response_error():
24
25
def test_query_timeout_error():
26
error_response = {
27
- "errors": [
28
- {
29
- "code": "QueryTimedOut",
30
- "message": "The query timed out."
31
- }
32
- ],
+ "errors": [{"code": "QueryTimedOut", "message": "The query timed out."}],
33
"message": "The query timed out.",
34
"statusCode": 400,
35
}
tox.ini
@@ -28,4 +28,4 @@ deps =
skip_install = true
commands =
isort --check-only src tests
- black --check src/ tests/
+ black --check --fast src/ tests/
0 commit comments