From f0d5a19c35549be1a79146d858ff187d8923ab8c Mon Sep 17 00:00:00 2001 From: Yuvi Panda Date: Tue, 7 May 2024 10:45:54 -0700 Subject: [PATCH] Fix typo Co-authored-by: Simon Li --- oauthenticator/generic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauthenticator/generic.py b/oauthenticator/generic.py index ca329284..b7177b76 100644 --- a/oauthenticator/generic.py +++ b/oauthenticator/generic.py @@ -31,7 +31,7 @@ def _login_service_default(self): @default('auth_state_groups_key') def _auth_state_groups_key_default(self): if callable(self.claim_groups_key): - # Automatically wrap the claim_gorups_key call so it gets what it thinks it should get + # Automatically wrap the claim_groups_key call so it gets what it thinks it should get return lambda auth_state: self.claim_groups_key( auth_state[self.user_auth_state_key] )