diff options
Diffstat (limited to 'test/python/legacy/asgi.py')
-rw-r--r-- | test/python/legacy/asgi.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/python/legacy/asgi.py b/test/python/legacy/asgi.py index 1d45cc4f..8be8932e 100644 --- a/test/python/legacy/asgi.py +++ b/test/python/legacy/asgi.py @@ -9,6 +9,8 @@ async def app_http(receive, send): { 'type': 'http.response.start', 'status': 200, - 'headers': [(b'content-length', b'0'),], + 'headers': [ + (b'content-length', b'0'), + ], } ) |