Skip to content

Commit 115e14a

Browse files
committed
Remove assignment to unused variable
1 parent 5a50eae commit 115e14a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/parser/test_header.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def test_negative_header(all_parsers):
5050
match="Passing -1 to header is invalid. "
5151
"For no header, use header=None instead",
5252
):
53-
result = parser.read_csv(StringIO(data), header=-1)
53+
parser.read_csv(StringIO(data), header=-1)
5454

5555

5656
def test_no_header_prefix(all_parsers):

0 commit comments

Comments
 (0)