Unverified Commit 521fe8de authored by Nikita Titov's avatar Nikita Titov Committed by GitHub
Browse files

[docs][python] Fix return types in docstrings (#5326)

Update basic.py
parent 24117b76
...@@ -3160,7 +3160,7 @@ class Booster: ...@@ -3160,7 +3160,7 @@ class Booster:
Returns Returns
------- -------
upper_bound : double upper_bound : float
Upper bound value of the model. Upper bound value of the model.
""" """
ret = ctypes.c_double(0) ret = ctypes.c_double(0)
...@@ -3174,7 +3174,7 @@ class Booster: ...@@ -3174,7 +3174,7 @@ class Booster:
Returns Returns
------- -------
lower_bound : double lower_bound : float
Lower bound value of the model. Lower bound value of the model.
""" """
ret = ctypes.c_double(0) ret = ctypes.c_double(0)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment