Skip to content

Commit

Permalink
Fix importing of typing.Self (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
hramezani committed Feb 27, 2024
1 parent e1203d6 commit 1964143
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion demo/auth_user.py
@@ -1,11 +1,12 @@
import json
from dataclasses import asdict, dataclass
from datetime import datetime, timedelta
from typing import Annotated, Any, Self
from typing import Annotated, Any

import jwt
from fastapi import Header, HTTPException
from fastui.auth import AuthRedirect
from typing_extensions import Self

JWT_SECRET = 'secret'

Expand Down

0 comments on commit 1964143

Please sign in to comment.