Fix checks

pull/23/head
Andre Basche 2 years ago
parent c4e8038652
commit e225a850bc

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

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

Loading…
Cancel
Save