From b5a8d614f4018fd3f36bf0d6fcccbadebbb42a9c Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Tue, 26 Jun 2018 10:09:59 +0100 Subject: [PATCH] Black formatting --- tests/test_routing.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/test_routing.py b/tests/test_routing.py index 2a30c814..8c365bec 100644 --- a/tests/test_routing.py +++ b/tests/test_routing.py @@ -20,13 +20,11 @@ def staticfiles(scope): app = Router( [ - Path("/", app=homepage, methods=['GET']), + Path("/", app=homepage, methods=["GET"]), PathPrefix( "/users", app=Router([Path("", app=users), Path("/{username}", app=user)]) ), - PathPrefix( - "/static", app=staticfiles, methods=['GET'] - ), + PathPrefix("/static", app=staticfiles, methods=["GET"]), ] )