Skip to content

Commit f969ebc

Browse files
voorhsSamoed
andauthored
Update autointent/nodes/_node_optimizer.py
Co-authored-by: Roman Solomatin <[email protected]>
1 parent 9eae6b0 commit f969ebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autointent/nodes/_node_optimizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def validate_step_with_log(cls, v: float | None, info: ValidationInfo) -> float
7474
ValueError: If step is provided when log is True
7575
"""
7676
if info.data.get("log", False) and v is not None:
77-
msg = "Step cannot be used when log is True. See optuna docs on `suggest_float`."
77+
msg = "Step cannot be used when log is True. See optuna docs on `suggest_float` (https://optuna.readthedocs.io/en/stable/reference/generated/optuna.trial.Trial.html#optuna.trial.Trial.suggest_float)."
7878
raise ValueError(msg)
7979
return v
8080

0 commit comments

Comments
 (0)