Skip to content

Commit fea015b

Browse files
committed
LINT cleanup
1 parent 0af6cea commit fea015b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/groupby/test_groupby.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2138,7 +2138,7 @@ def test_groupby_bool_aggs(self, agg_func, skipna, vals):
21382138
exp = getattr(bltins, agg_func)(vals)
21392139

21402140
# edge case for missing data with skipna and 'any'
2141-
if skipna and all(isna(vals)) and agg_func=='any':
2141+
if skipna and all(isna(vals)) and agg_func == 'any':
21422142
exp = False
21432143

21442144
exp_df = DataFrame([exp] * 2, columns=['val'], index=pd.Index(

0 commit comments

Comments
 (0)