Skip to content

Commit

Permalink
Fix importing of typing.Self
Browse files Browse the repository at this point in the history
  • Loading branch information
hramezani committed Feb 26, 2024
1 parent e1203d6 commit c17d6bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion demo/auth_user.py
Original file line number Diff line number Diff line change
@@ -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 c17d6bd

Please sign in to comment.