Skip to content

Commit

Permalink
Run black
Browse files Browse the repository at this point in the history
  • Loading branch information
ageorgou committed Aug 31, 2024
1 parent 3cf76f8 commit a152494
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/test_literal/test_datetime.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ def test_timezone_z(self):
)

assert isinstance(l.toPython(), datetime)
assert datetime_isoformat(
l.toPython(),
DATE_EXT_COMPLETE + "T" + "%H:%M:%S.%f" + TZ_EXT
) == dt
assert (
datetime_isoformat(
l.toPython(), DATE_EXT_COMPLETE + "T" + "%H:%M:%S.%f" + TZ_EXT
)
== dt
)
assert l.toPython().isoformat() == "2008-12-01T18:02:00.522630+00:00"

def test_timezone_offset(self):
Expand Down

0 comments on commit a152494

Please sign in to comment.