From 4d28d7d6ba783ee09e397896b3d45e92d00f3425 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sun, 7 Nov 2021 21:24:51 +0900 Subject: [PATCH] Fix typo in manager.py (#791) successfull -> successful --- fastapi_users/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi_users/manager.py b/fastapi_users/manager.py index b9b655e0..fce8be2e 100644 --- a/fastapi_users/manager.py +++ b/fastapi_users/manager.py @@ -160,7 +160,7 @@ class BaseUserManager(Generic[models.UC, models.UD]): self, oauth_account: models.BaseOAuthAccount, request: Optional[Request] = None ) -> models.UD: """ - Handle the callback after a successfull OAuth authentication. + Handle the callback after a successful OAuth authentication. If the user already exists with this OAuth account, the token is updated.