Skip to content

Commit 3d17d08

Browse files
🎨 Auto format
1 parent 4885b99 commit 3d17d08

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_update.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ class OrganizationUpdate(SQLModel):
2020
update={
2121
"headquarters": "-", # This field is in Organization, but not in OrganizationUpdate
2222
},
23-
exclude_unset=True
23+
exclude_unset=True,
2424
)
2525
# fields that should stay the same
2626
assert org.city == "New York"
27-
#fields that should be updated
27+
# fields that should be updated
2828
assert org.name == "Updated org"
2929
assert org.headquarters == "-"
3030
# test raise value error when passing in updates other than dict or BaseModel

0 commit comments

Comments
 (0)