Skip to content

Commit 93d7c03

Browse files
committed
format
1 parent 5707fba commit 93d7c03

File tree

1 file changed

+3
-1
lines changed
  • src/py/reactpy/reactpy/backend

1 file changed

+3
-1
lines changed

src/py/reactpy/reactpy/backend/asgi.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,9 @@ async def file_response(scope, send, file_path: Path, block_size: int) -> None:
343343
break
344344

345345

346-
async def header_val(scope: dict, key: str, default: str | int | None = None) -> str | int | None:
346+
async def header_val(
347+
scope: dict, key: str, default: str | int | None = None
348+
) -> str | int | None:
347349
"""Get a value from a scope's headers."""
348350
return await anext(
349351
(

0 commit comments

Comments
 (0)