Skip to content

Commit

Permalink
Update src/snowflake/snowpark/modin/pandas/groupby.py
Browse files Browse the repository at this point in the history
Co-authored-by: Naren Krishna <[email protected]>
  • Loading branch information
sfc-gh-rdurrani and sfc-gh-nkrishna authored Sep 17, 2024
1 parent ba02385 commit f2730be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snowflake/snowpark/modin/pandas/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -1169,7 +1169,7 @@ def _wrap_aggregation(
# of that error, we can throw this error instead that will make it more clear to users
# what went wrong.
raise ValueError(
f"GroupBy aggregations like sum take a numeric_only argument that needs to be a bool, but a {type(numeric_only).__name__} value was passed in."
f"GroupBy aggregations like 'sum' take a 'numeric_only' argument that needs to be a bool, but a {type(numeric_only).__name__} value was passed in."
)

agg_args = tuple() if agg_args is None else agg_args
Expand Down

0 comments on commit f2730be

Please sign in to comment.