Skip to content

Commit 7fd549d

Browse files
committed
Fix formatting
1 parent d318f25 commit 7fd549d

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
@@ -559,7 +559,7 @@ def test_to_csv_zip_arguments(self, compression, archive_name):
559559
@pytest.mark.parametrize("df_new_type", ["Int64"])
560560
def test_to_csv_na_rep_long_string(self, df_new_type):
561561
# see gh-25099
562-
df = pd.DataFrame({"c": [float('nan')]*3})
562+
df = pd.DataFrame({"c": [float('nan')] * 3})
563563
df = df.astype(df_new_type)
564564
expected_rows = ['c',
565565
'mynull',

0 commit comments

Comments
 (0)