Skip to content

Commit e225a85

Browse files
committed
Fix checks
1 parent c4e8038 commit e225a85

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ disable=missing-docstring
44

55
[FORMAT]
66

7-
max-args=6
7+
max-args=7
88
max-attributes=8
99
max-line-length=88

pyhon/connection/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ async def authenticate(self) -> None:
264264
except exceptions.HonNoAuthenticationNeeded:
265265
return
266266

267-
async def refresh(self, refresh_token="") -> bool:
267+
async def refresh(self, refresh_token: str = "") -> bool:
268268
if refresh_token:
269269
self._auth.refresh_token = refresh_token
270270
params = {

0 commit comments

Comments
 (0)