From: Tom Christie Date: Tue, 26 Jun 2018 09:09:59 +0000 (+0100) Subject: Black formatting X-Git-Tag: 0.1.3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5%2Fhead;p=thirdparty%2Fstarlette.git Black formatting --- 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"]), ] )