Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 767a229

Browse files
authored
Merge pull request #40 from climatepolicyradar/bugfix/make-db-value-optional
Making db value optional.
2 parents ab8e510 + 177e969 commit 767a229

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cpr_data_access/pipeline_general_models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class Update(BaseModel):
9191
"""Results of comparing db state data against the s3 data to identify updates."""
9292

9393
s3_value: Optional[Union[str, datetime, dict]]
94-
db_value: Union[str, datetime, dict]
94+
db_value: Optional[Union[str, datetime, dict]]
9595
type: UpdateTypes
9696

9797

0 commit comments

Comments
 (0)