Skip to content

Commit 84a3f16

Browse files
committed
don't pester me
1 parent 2e33a07 commit 84a3f16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integrations/stdlib/test_httplib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def test_graphql_get_client_error_captured(sentry_init, capture_events):
370370

371371
params = {"query": "query QueryName {user{name}}"}
372372

373-
def do_GET(self):
373+
def do_GET(self): # noqa: N802
374374
self.send_response(200)
375375
self.end_headers()
376376
self.wfile.write(json.dumps(graphql_response).encode())
@@ -428,7 +428,7 @@ def test_graphql_post_client_error_captured(sentry_init, capture_events):
428428

429429
events = capture_events()
430430

431-
def do_POST(self):
431+
def do_POST(self): # noqa: N802
432432
self.send_response(200)
433433
self.end_headers()
434434
self.wfile.write(json.dumps(graphql_response).encode())

0 commit comments

Comments
 (0)