From 251a7a26d53cd536ac37b635aaf91b0b12ca88db Mon Sep 17 00:00:00 2001 From: Kharec Date: Mon, 15 Dec 2025 13:23:13 +0100 Subject: [PATCH] format: pep8 --- auditui/downloads.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/auditui/downloads.py b/auditui/downloads.py index 8bb230c..cb6cdc5 100644 --- a/auditui/downloads.py +++ b/auditui/downloads.py @@ -29,9 +29,11 @@ class DownloadManager: self.cache_dir = cache_dir self.cache_dir.mkdir(parents=True, exist_ok=True) self.chunk_size = chunk_size - self._http_client = httpx.Client(auth=auth, timeout=30.0, follow_redirects=True) + self._http_client = httpx.Client( + auth=auth, timeout=30.0, follow_redirects=True) self._download_client = httpx.Client( - timeout=httpx.Timeout(connect=30.0, read=None, write=30.0, pool=30.0), + timeout=httpx.Timeout(connect=30.0, read=None, + write=30.0, pool=30.0), follow_redirects=True, )