Skip to content

Commit e674e41

Browse files
committed
Fix code spacing
1 parent 098496c commit e674e41

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tornado/asgi.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@
99
ReceiveCallable = Callable[[], Awaitable[dict]]
1010
SendCallable = Callable[[dict], Awaitable[None]]
1111

12+
1213
@dataclass
1314
class ASGIHTTPRequestContext:
1415
"""To convey connection details to the HTTPServerRequest object"""
1516
protocol: str
1617
address: Optional[tuple] = None
1718
remote_ip: str = "0.0.0.0"
1819

20+
1921
class ASGIHTTPConnection(HTTPConnection):
2022
"""Represents the connection for 1 request/response pair
2123

0 commit comments

Comments
 (0)