summaryrefslogtreecommitdiff
path: root/kvmd/apps
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2024-08-19 01:06:00 +0300
committerMaxim Devaev <[email protected]>2024-08-19 01:06:00 +0300
commitc9405efa0535fda9ab6693ea93a477dbded28069 (patch)
treed90d2ef99e42416e68a4802d6994d7f7955c93d1 /kvmd/apps
parentabedace4b3173fca98eee1ac0b778a45dc93c5b5 (diff)
lint fix
Diffstat (limited to 'kvmd/apps')
-rw-r--r--kvmd/apps/kvmd/streamer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/apps/kvmd/streamer.py b/kvmd/apps/kvmd/streamer.py
index 26904d40..e5c406d9 100644
--- a/kvmd/apps/kvmd/streamer.py
+++ b/kvmd/apps/kvmd/streamer.py
@@ -357,7 +357,7 @@ class Streamer: # pylint: disable=too-many-instance-attributes
try:
async with session.get(
self.__make_url("snapshot"),
- timeout=self.__snapshot_timeout,
+ timeout=aiohttp.ClientTimeout(total=self.__snapshot_timeout),
) as response:
htclient.raise_not_200(response)