use better name

This commit is contained in:
burnettk 2022-06-19 13:47:16 -04:00
parent 7cb3c65527
commit eaeb5f2ae3
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class UserModel(db.Model): # type: ignore
try:
payload = jwt.decode(
auth_token, secret_key, algorithms="HS256"
auth_token, secret_key, algorithms=["HS256"]
)
return payload
except jwt.ExpiredSignatureError as exception: