Black formatting

This commit is contained in:
Tom Christie 2018-06-26 10:09:59 +01:00
parent 4f80753cf7
commit b5a8d614f4
1 changed files with 2 additions and 4 deletions

View File

@ -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"]),
]
)