Skip to content

Commit 5a99b02

Browse files
Terji PetersenTerji Petersen
Terji Petersen
authored and
Terji Petersen
committed
linting
1 parent 9573e16 commit 5a99b02

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/reshape/test_pivot.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -2052,7 +2052,9 @@ def __init__(self, *args, **kwargs) -> None:
20522052
msg = "The following operation may generate"
20532053
with tm.assert_produces_warning(PerformanceWarning, match=msg):
20542054
with pytest.raises(Exception, match="Don't compute final result."):
2055-
df.pivot_table(index="ind1", columns="ind2", values="count", aggfunc="count")
2055+
df.pivot_table(
2056+
index="ind1", columns="ind2", values="count", aggfunc="count"
2057+
)
20562058

20572059
def test_pivot_table_aggfunc_dropna(self, dropna):
20582060
# GH 22159

0 commit comments

Comments
 (0)