Skip to content

Commit

Permalink
applied black to tests/test_dt_parse.py
Browse files Browse the repository at this point in the history
  • Loading branch information
westandskif committed Aug 22, 2024
1 parent c0ba0f7 commit 710dd25
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_dt_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ def test_dt_parse_base_n_multiple_formats():
assert result == t and result is not t
result = c.datetime_parse("%Y-%m-%d", default=t).execute("1/1/2000")
assert result == t and result is not t
result = c.date_parse("%Y-%m-%d", default=t).execute("2024-08-22T14:38:23.943838")
result = c.date_parse("%Y-%m-%d", default=t).execute(
"2024-08-22T14:38:23.943838"
)
assert result == t and result is not t


Expand Down

0 comments on commit 710dd25

Please sign in to comment.