Skip to content

Commit

Permalink
Fix copy-paste in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
wence- committed Aug 29, 2024
1 parent 65148bd commit b5de1eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf_polars/cudf_polars/dsl/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ def __init__(
self.name = name
self.children = children
if self.name != pl_expr.TemporalFunction.Year:
raise NotImplementedError(f"String function {self.name}")
raise NotImplementedError(f"Temporal function {self.name}")

def do_evaluate(
self,
Expand Down

0 comments on commit b5de1eb

Please sign in to comment.