Skip to content

Commit 2b9617a

Browse files
committed
.
1 parent c93d378 commit 2b9617a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

armis_sdk/clients/collectors_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ async def main():
7171
async with client.stream("GET", collector_image.url) as response:
7272
response.raise_for_status()
7373
total_size = int(response.headers.get("Content-Length", "0"))
74+
# pylint: disable-next=contextmanager-generator-missing-cleanup
7475
with self.open_file(destination) as file:
7576
async for chunk in response.aiter_bytes():
7677
file.write(chunk)

0 commit comments

Comments
 (0)