diff options
Diffstat (limited to 'kvmd/htclient.py')
-rw-r--r-- | kvmd/htclient.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/htclient.py b/kvmd/htclient.py index 724eddcd..9d9ae82c 100644 --- a/kvmd/htclient.py +++ b/kvmd/htclient.py @@ -79,6 +79,6 @@ async def download( ), } async with aiohttp.ClientSession(**kwargs) as session: - async with session.get(url, verify_ssl=verify) as response: + async with session.get(url, verify_ssl=verify) as response: # type: ignore raise_not_200(response) yield response |