xclasscode commited on
Commit
37e3930
·
verified ·
1 Parent(s): 112328a

Update schemas.py

Browse files
Files changed (1) hide show
  1. schemas.py +4 -1
schemas.py CHANGED
@@ -11,4 +11,7 @@ class SentimentResultCreate(SentimentResultBase):
11
 
12
  class SentimentResult(SentimentResultBase):
13
  id: int
14
- created_at: datetime
 
 
 
 
11
 
12
  class SentimentResult(SentimentResultBase):
13
  id: int
14
+ created_at: datetime
15
+
16
+ # Ensure SentimentResult inherits from BaseModel
17
+ SentimentResultBase.update_forward_refs()