Fix checks

This commit is contained in:
Andre Basche 2024-02-11 05:10:54 +01:00
parent c4e8038652
commit e225a850bc
2 changed files with 2 additions and 2 deletions

View File

@ -4,6 +4,6 @@ disable=missing-docstring
[FORMAT] [FORMAT]
max-args=6 max-args=7
max-attributes=8 max-attributes=8
max-line-length=88 max-line-length=88

View File

@ -264,7 +264,7 @@ class HonAuth:
except exceptions.HonNoAuthenticationNeeded: except exceptions.HonNoAuthenticationNeeded:
return return
async def refresh(self, refresh_token="") -> bool: async def refresh(self, refresh_token: str = "") -> bool:
if refresh_token: if refresh_token:
self._auth.refresh_token = refresh_token self._auth.refresh_token = refresh_token
params = { params = {