diff options
author | Maxim Devaev <[email protected]> | 2024-08-19 01:06:00 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2024-08-19 01:06:00 +0300 |
commit | c9405efa0535fda9ab6693ea93a477dbded28069 (patch) | |
tree | d90d2ef99e42416e68a4802d6994d7f7955c93d1 /kvmd/plugins | |
parent | abedace4b3173fca98eee1ac0b778a45dc93c5b5 (diff) |
lint fix
Diffstat (limited to 'kvmd/plugins')
-rw-r--r-- | kvmd/plugins/auth/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/auth/http.py b/kvmd/plugins/auth/http.py index 54308279..520f64dc 100644 --- a/kvmd/plugins/auth/http.py +++ b/kvmd/plugins/auth/http.py @@ -75,7 +75,7 @@ class Plugin(BaseAuthService): async with session.request( method="POST", url=self.__url, - timeout=self.__timeout, + timeout=aiohttp.ClientTimeout(total=self.__timeout), json={ "user": user, "passwd": passwd, |