Skip to content

Commit 027b132

Browse files
author
Hoang Phan
committed
Fix precommit
1 parent 4d14faf commit 027b132

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_quixstreams/test_dataframe/test_windows/test_aggregations.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,10 @@ def test_other_aggregation(self, aggregator, values, expected):
176176
(Mean(), "Mean"),
177177
(Max(), "Max"),
178178
(Min(), "Min"),
179-
(Reduce(reducer=lambda old, new: old + new, initializer=lambda x: x), "Reduce"),
179+
(
180+
Reduce(reducer=lambda old, new: old + new, initializer=lambda x: x),
181+
"Reduce",
182+
),
180183
(Count("value"), "Count/value"),
181184
(Sum("value"), "Sum/value"),
182185
(Mean("value"), "Mean/value"),

0 commit comments

Comments
 (0)