Skip to content

Commit

Permalink
fixing type-check
Browse files Browse the repository at this point in the history
  • Loading branch information
tnixon committed Sep 22, 2023
1 parent 15852e4 commit 78fc76e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tempo/tsdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -1514,7 +1514,7 @@ def null_safe_equals(col1: Column, col2: Column) -> Column:
)

def state_comparison_fn(a: CT, b: CT) -> Callable[[Column, Column], Column]:
return operator_dict[state_definition](a, b) # type: ignore
return operator_dict[state_definition](a, b)

elif callable(state_definition):
state_comparison_fn = state_definition # type: ignore
Expand Down

0 comments on commit 78fc76e

Please sign in to comment.