File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
fastapi_users_db_dynamodb Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1515from fastapi_users .authentication .strategy .db import AP , AccessTokenDatabase
1616from fastapi_users .models import ID
1717
18- from fastapi_users_db_dynamodb .generics import GUID
19-
2018
2119class DynamoDBBaseAccessTokenTable (Generic [ID ]):
2220 """Base access token table schema for DynamoDB."""
@@ -30,7 +28,7 @@ class DynamoDBBaseAccessTokenTable(Generic[ID]):
3028
3129
3230class DynamoDBBaseAccessTokenTableUUID (DynamoDBBaseAccessTokenTable [uuid .UUID ]):
33- user_id : GUID
31+ user_id : uuid . UUID
3432
3533
3634class DynamoDBAccessTokenDatabase (Generic [AP ], AccessTokenDatabase [AP ]):
Original file line number Diff line number Diff line change 11[tool .mypy ]
22plugins = []
3+ ignore_missing_imports = true
34
45[tool .pytest .ini_options ]
56asyncio_mode = " strict"
You can’t perform that action at this time.
0 commit comments