Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit a986000

Browse files
1 parent 7817807 commit a986000

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/system/test_crud.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1335,7 +1335,9 @@ def test_insert_autonow_property_with_tz(dispose_of):
13351335
"""
13361336

13371337
class SomeKind(ndb.Model):
1338-
created_at = ndb.DateTimeProperty(auto_now_add=True, tzinfo=datetime.timezone.utc)
1338+
created_at = ndb.DateTimeProperty(
1339+
auto_now_add=True, tzinfo=datetime.timezone.utc
1340+
)
13391341
updated_at = ndb.DateTimeProperty(auto_now=True, tzinfo=datetime.timezone.utc)
13401342

13411343
now = datetime.datetime.now(datetime.timezone.utc)

0 commit comments

Comments
 (0)