Skip to content

Commit 87297cd

Browse files
committed
Fix flake8 E265
1 parent ef872e9 commit 87297cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/formats/test_format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1452,7 +1452,7 @@ def test_to_string_format_na(self):
14521452
assert result == expected
14531453

14541454
def test_to_string_decimal(self):
1455-
#Issue #23614
1455+
# Issue #23614
14561456
df = DataFrame({'A': [6.0, 3.1, 2.2]})
14571457
expected = ' A\n0 6,0\n1 3,1\n2 2,2'
14581458
assert df.to_string(decimal=',') == expected

0 commit comments

Comments
 (0)