We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e8038 commit e225a85Copy full SHA for e225a85
.pylintrc
@@ -4,6 +4,6 @@ disable=missing-docstring
4
5
[FORMAT]
6
7
-max-args=6
+max-args=7
8
max-attributes=8
9
max-line-length=88
pyhon/connection/auth.py
@@ -264,7 +264,7 @@ async def authenticate(self) -> None:
264
except exceptions.HonNoAuthenticationNeeded:
265
return
266
267
- async def refresh(self, refresh_token="") -> bool:
+ async def refresh(self, refresh_token: str = "") -> bool:
268
if refresh_token:
269
self._auth.refresh_token = refresh_token
270
params = {
0 commit comments