Skip to content

Commit

Permalink
Fix checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre0512 committed Feb 11, 2024
1 parent c4e8038 commit e225a85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ disable=missing-docstring

[FORMAT]

max-args=6
max-args=7
max-attributes=8
max-line-length=88
2 changes: 1 addition & 1 deletion pyhon/connection/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ async def authenticate(self) -> None:
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 = {
Expand Down

0 comments on commit e225a85

Please sign in to comment.