Skip to content

Commit 8a5eeaa

Browse files
committed
Update comment in FutureWarning
1 parent 3dd7917 commit 8a5eeaa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

optuna/_convert_positional_args.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ def converter_wrapper(*args: Any, **kwargs: Any) -> _T:
3737

3838
if len(args) >= 1:
3939
warnings.warn(
40-
f"{func.__name__}(): Positional arguments are deprecated."
41-
" Please give all values as keyword arguments.",
40+
f"{func.__name__}(): Please give all values as keyword arguments."
41+
" See https://github.com/optuna/optuna/issues/3324 for details.",
4242
FutureWarning,
4343
stacklevel=warning_stacklevel,
4444
)

0 commit comments

Comments
 (0)