Skip to content

Commit

Permalink
fix(app):
Browse files Browse the repository at this point in the history
1. fix typing
  • Loading branch information
MorvanZhou committed Apr 25, 2024
1 parent 78fc225 commit e1dd679
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/retk/controllers/schemas/user.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Literal, Optional
from typing import Literal, Optional, List

from pydantic import BaseModel, NonNegativeInt, Field, NonNegativeFloat

Expand Down Expand Up @@ -70,4 +70,4 @@ class Notification(BaseModel):
createdAt: str

requestId: str
notifications: list[Notification]
notifications: List[Notification]

0 comments on commit e1dd679

Please sign in to comment.