Skip to content

Commit 102494e

Browse files
authored
Fix typo in FixedTimeWindowDefinition.reduce docstring (#501)
1 parent 8716290 commit 102494e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quixstreams/dataframe/windows/definitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def reduce(
164164
def reducer(agg: dict, current: int):
165165
aggregated = {
166166
'min': min(agg['min'], current),
167-
'max': max(agg['max'], current)
167+
'max': max(agg['max'], current),
168168
'count': agg['count'] + 1
169169
}
170170
return aggregated

0 commit comments

Comments
 (0)