Skip to content

Commit f9fd707

Browse files
committed
Merging pull request 153
Signed-off-by: Lukáš Doktor <[email protected]> * github.com:autotest/aexpect: aexpect.rss_client: Fix black style
2 parents 659ac1e + 6901833 commit f9fd707

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

aexpect/rss_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,9 @@ def _receive_file_chunks(self, filename, timeout=60):
249249
try:
250250
end_time = time.monotonic() + timeout
251251
while True:
252-
data = self._receive_packet(int(end_time - time.monotonic()))
252+
data = self._receive_packet(
253+
int(end_time - time.monotonic())
254+
)
253255
file_handle.write(data)
254256
if len(data) < CHUNKSIZE:
255257
break

0 commit comments

Comments
 (0)