Skip to content

Commit 1030b03

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent dd3c209 commit 1030b03

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

aiohttp/http_writer.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,11 @@ def _writelines(self, chunks: Iterable[bytes]) -> None:
9393
transport.write(b"".join(chunks))
9494

9595
async def write(
96-
self, chunk: bytes | bytearray | memoryview, *, drain: bool = True, LIMIT: int = 0x10000
96+
self,
97+
chunk: bytes | bytearray | memoryview,
98+
*,
99+
drain: bool = True,
100+
LIMIT: int = 0x10000,
97101
) -> None:
98102
"""Writes chunk of data to a stream.
99103

0 commit comments

Comments
 (0)