Skip to content

Commit

Permalink
🦉 Updates from OwlBot
Browse files Browse the repository at this point in the history
  • Loading branch information
gcf-owl-bot[bot] committed Aug 12, 2021
1 parent 7817807 commit a986000
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/system/test_crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,9 @@ def test_insert_autonow_property_with_tz(dispose_of):
"""

class SomeKind(ndb.Model):
created_at = ndb.DateTimeProperty(auto_now_add=True, tzinfo=datetime.timezone.utc)
created_at = ndb.DateTimeProperty(
auto_now_add=True, tzinfo=datetime.timezone.utc
)
updated_at = ndb.DateTimeProperty(auto_now=True, tzinfo=datetime.timezone.utc)

now = datetime.datetime.now(datetime.timezone.utc)
Expand Down

0 comments on commit a986000

Please sign in to comment.