Skip to content

Commit

Permalink
remove annotation from assign_windows (#7875)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 8d7b46438a0c29b2738d8d908ee1a7be1cf6f94e
  • Loading branch information
KamilPiechowiak authored and Manul from Pathway committed Dec 30, 2024
1 parent b56c7c3 commit 3474385
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/pathway/stdlib/temporal/_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,7 @@ def kth_stable_window(k):

return (start, end)

def assign_windows(
instance: Any, key: TimeEventType
) -> list[tuple[Any, TimeEventType, TimeEventType]]:
def assign_windows(instance: Any, key: TimeEventType):
"""Returns the list of all the windows the given key belongs to.
Each window is a tuple (window_start, window_end) describing the range
Expand Down

0 comments on commit 3474385

Please sign in to comment.