Skip to content

Commit f2e4cae

Browse files
committed
modified: pandas/tests/reshape/test_pivot.py
- Removed type hints for `test_pivot_table_index_and_column_keys_with_nan` per comment feedback.
1 parent 892a1a2 commit f2e4cae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/reshape/test_pivot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2529,7 +2529,7 @@ def test_pivot_table_aggfunc_nunique_with_different_values(self):
25292529

25302530
tm.assert_frame_equal(result, expected)
25312531

2532-
def test_pivot_table_index_and_column_keys_with_nan(self, dropna: bool) -> None:
2532+
def test_pivot_table_index_and_column_keys_with_nan(self, dropna):
25332533
data = {"row": [None, *range(4)], "col": [*range(4), None], "val": range(5)}
25342534
df = DataFrame(data)
25352535
result = df.pivot_table(values="val", index="row", columns="col", dropna=dropna)

0 commit comments

Comments
 (0)