Fix python formatter and linter after external python tooling update.

This commit is contained in:
Sebastian Jeltsch
2025-01-05 13:58:44 +01:00
parent c117bb9ba8
commit fd31f9dcca
3 changed files with 8 additions and 4 deletions
+5 -1
View File
@@ -212,7 +212,11 @@ class Client:
tokens = self.tokens()
if tokens != None:
return User.fromJson(
jwt.decode(tokens.auth, algorithms=["EdDSA"], options={"verify_signature": False})
jwt.decode(
tokens.auth,
algorithms=["EdDSA"],
options={"verify_signature": False},
)
)
def site(self) -> str: