From e225a850bcfbc62b9b4dd5106399258f1e9f484f Mon Sep 17 00:00:00 2001 From: Andre Basche Date: Sun, 11 Feb 2024 05:10:54 +0100 Subject: [PATCH] Fix checks --- .pylintrc | 2 +- pyhon/connection/auth.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index 5071b8a..c73587e 100644 --- a/.pylintrc +++ b/.pylintrc @@ -4,6 +4,6 @@ disable=missing-docstring [FORMAT] -max-args=6 +max-args=7 max-attributes=8 max-line-length=88 diff --git a/pyhon/connection/auth.py b/pyhon/connection/auth.py index c6f7c4f..2096010 100644 --- a/pyhon/connection/auth.py +++ b/pyhon/connection/auth.py @@ -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 = {