Skip to content

Commit cfa5feb

Browse files
committed
oops
1 parent a646a52 commit cfa5feb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/database.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def upsert_repo(
2626
repo = Repo.from_github_data(repo_data, installation_id, connected)
2727

2828
# Convert to dict for database
29-
data = repo.model_dump(exclude_none=True, deep=True)
29+
data = repo.model_dump(exclude_none=True)
3030

3131
# Upsert the repository
3232
result = supabase.table("repos").upsert(data).execute()
@@ -100,7 +100,7 @@ def upsert_review(review: Review) -> Optional[Review]:
100100

101101
try:
102102
# Convert review to dict, preserving nested structure
103-
data = review.model_dump(exclude_none=True, deep=True)
103+
data = review.model_dump(exclude_none=True)
104104
data["updated_at"] = datetime.now().isoformat()
105105

106106
# Upsert the review

0 commit comments

Comments
 (0)