Fix typing errors

This commit is contained in:
François Voron
2021-05-17 09:00:34 +02:00
parent 5267e605f4
commit a690e82408
5 changed files with 24 additions and 9 deletions

View File

@ -27,7 +27,7 @@ try:
from fastapi_users.router import get_oauth_router
except ModuleNotFoundError: # pragma: no cover
BaseOAuth2 = Type
BaseOAuth2 = Type # type: ignore
class FastAPIUsers: