From: Tom Christie Date: Wed, 4 Sep 2019 14:11:40 +0000 (+0100) Subject: Apply black formatting X-Git-Tag: 0.7.3~21^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5961bd8ba3e1fbb8bcae739dc6ab8fc390f79d8e;p=thirdparty%2Fhttpx.git Apply black formatting --- diff --git a/tests/client/test_redirects.py b/tests/client/test_redirects.py index 15e2c6a8..d732ce42 100644 --- a/tests/client/test_redirects.py +++ b/tests/client/test_redirects.py @@ -88,9 +88,7 @@ class MockDispatch(AsyncDispatcher): elif request.url.path == "/redirect_no_body": await request.read() headers = {"location": "/redirect_body_target"} - return AsyncResponse( - codes.SEE_OTHER, headers=headers, request=request - ) + return AsyncResponse(codes.SEE_OTHER, headers=headers, request=request) elif request.url.path == "/redirect_body_target": content = await request.read()