Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bjchambers committed Aug 15, 2023
1 parent 486b890 commit 022f99b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/pysrc/kaskada/_timestream.py
Original file line number Diff line number Diff line change
Expand Up @@ -1216,9 +1216,9 @@ def _aggregation(
# or a special function to do that.
#
# HACK: This places an extra null row in the input to `collect`
# which allows us to "clear" the window when the appropriate
# which allows us to "clear" the window when the appropriate
# `duration` has passed with no "real" inputs.
merged_input = record({ "input": input, "shift": input_shift }).col("input")
merged_input = record({"input": input, "shift": input_shift}).col("input")
return Timestream._call("collect", merged_input, *args, None, trailing_ns)
else:
raise NotImplementedError(f"Unknown window type {window!r}")
Expand Down

0 comments on commit 022f99b

Please sign in to comment.