Skip to content

Commit 0c70cee

Browse files
committed
precommit format changes
1 parent 387851d commit 0c70cee

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/tools/test_to_datetime.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -2593,7 +2593,9 @@ def test_invalid_origins_tzinfo(self):
25932593

25942594
def test_incorrect_value_exception(self):
25952595
# GH47495
2596-
with pytest.raises(ValueError, match="Unknown string format: yesterday present at position 1"):
2596+
with pytest.raises(
2597+
ValueError, match="Unknown string format: yesterday present at position 1"
2598+
):
25972599
to_datetime(["today", "yesterday"])
25982600

25992601
@pytest.mark.parametrize("format", [None, "%Y-%m-%d %H:%M:%S"])

0 commit comments

Comments
 (0)