From 8c77aa452863d12b0f0f386825ad72533f0ec0e6 Mon Sep 17 00:00:00 2001 From: tehkillerbee Date: Tue, 2 Apr 2024 07:24:11 +0200 Subject: [PATCH] Formatting --- tidalapi/session.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tidalapi/session.py b/tidalapi/session.py index 4931275..60fbffb 100644 --- a/tidalapi/session.py +++ b/tidalapi/session.py @@ -649,7 +649,9 @@ def _process_link_login(self, json: JsonObj) -> None: json = self._wait_for_link_login(json) self.process_auth_token(json, is_pkce_token=False) - def process_auth_token(self, json: dict[str, Union[str, int]], is_pkce_token: bool = True) -> None: + def process_auth_token( + self, json: dict[str, Union[str, int]], is_pkce_token: bool = True + ) -> None: """Parses the authorization response and sets the token values to the specific variables for further usage.