Skip to content

Commit 621fa2f

Browse files
Reformatting by black
1 parent c024067 commit 621fa2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/formats/test_to_csv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ def test_na_rep_truncated(self):
601601
@pytest.mark.parametrize("errors", ["surrogatepass", "ignore", "replace"])
602602
def test_to_csv_errors(self, errors):
603603
# GH 22610
604-
data = ['\ud800foo']
604+
data = ["\ud800foo"]
605605
ser = pd.Series(data, index=pd.Index(data))
606606
with tm.ensure_clean("test.csv") as path:
607607
ser.to_csv(path, errors=errors)

0 commit comments

Comments
 (0)