Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonspeed committed Oct 22, 2024
1 parent ef5c7bf commit 0421cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/dataframe/test_getitem.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ def test_df_getitem_5343() -> None:
assert_frame_equal(df[4, [5]], pl.DataFrame({"foo5": [1024]}))


def test_no_deadlock_19358():
def test_no_deadlock_19358() -> None:
s = pl.Series(["text"] * 100 + [1] * 100, dtype=pl.Object)
result = s.to_frame()[[0, -1]]
assert result[""].to_list() == ["text", 1]

0 comments on commit 0421cc3

Please sign in to comment.