Skip to content

Commit

Permalink
feat: Make datalake_status field optional in BulkInsertOutputModel
Browse files Browse the repository at this point in the history
  • Loading branch information
TanookiVerde committed Aug 9, 2024
1 parent ca71317 commit f68559c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/types/pydantic_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class UploadToDatalakeStatusModel(BaseModel):

class BulkInsertOutputModel(BaseModel):
count: int
datalake_status: UploadToDatalakeStatusModel
datalake_status: Optional[UploadToDatalakeStatusModel]


class ConditionListModel(BaseModel):
Expand Down

0 comments on commit f68559c

Please sign in to comment.