]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Apply black formatting 310/head
authorTom Christie <tom@tomchristie.com>
Wed, 4 Sep 2019 14:11:40 +0000 (15:11 +0100)
committerTom Christie <tom@tomchristie.com>
Wed, 4 Sep 2019 14:11:40 +0000 (15:11 +0100)
tests/client/test_redirects.py

index 15e2c6a88996daefdb39d4c7d41b8a5abe93ac29..d732ce421adde3c4c00c80ff4b91c4d82d270e12 100644 (file)
@@ -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()