Skip to content

Commit

Permalink
Update python/whylogs/core/utils/utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-rogers authored Sep 26, 2024
1 parent b2cd5a1 commit 06cac52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/whylogs/core/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def deprecated_decorator(func):
@functools.wraps(func)
def wrapper(*args, **kwargs):
if arg_name in kwargs:
warnings.warn(f"Argument {arg_name} is deprecated, {message if message else 'do not use it'}.")
warnings.warn(f"Argument {arg_name} is deprecated, {message if message else 'it will be removed in the next major version of whylogs'}.")
return func(*args, **kwargs)

return wrapper
Expand Down

0 comments on commit 06cac52

Please sign in to comment.