From 6dbe2c2d5ea9c2b47a164ae2b83b24abe828c157 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Tue, 23 Feb 2021 21:18:14 +0100 Subject: [PATCH] Fix missing type annotation --- snikket_web/prosodyclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snikket_web/prosodyclient.py b/snikket_web/prosodyclient.py index 2acd409..eb70791 100644 --- a/snikket_web/prosodyclient.py +++ b/snikket_web/prosodyclient.py @@ -332,7 +332,7 @@ class ProsodyClient: ) ) - def _store_token_in_session(self, token_info: TokenInfo): + def _store_token_in_session(self, token_info: TokenInfo) -> None: http_session[self.SESSION_TOKEN] = token_info.token http_session[self.SESSION_CACHED_SCOPE] = " ".join(token_info.scopes)