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

Commit

Permalink
Merge pull request #40 from climatepolicyradar/bugfix/make-db-value-o…
Browse files Browse the repository at this point in the history
…ptional

Making db value optional.
  • Loading branch information
joel-wright authored Sep 14, 2023
2 parents ab8e510 + 177e969 commit 767a229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpr_data_access/pipeline_general_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class Update(BaseModel):
"""Results of comparing db state data against the s3 data to identify updates."""

s3_value: Optional[Union[str, datetime, dict]]
db_value: Union[str, datetime, dict]
db_value: Optional[Union[str, datetime, dict]]
type: UpdateTypes


Expand Down

0 comments on commit 767a229

Please sign in to comment.