Skip to content

Commit

Permalink
[docs][python] Fix return types in docstrings (#5326)
Browse files Browse the repository at this point in the history
Update basic.py
  • Loading branch information
StrikerRUS authored Jun 26, 2022
1 parent 24117b7 commit 521fe8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python-package/lightgbm/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -3160,7 +3160,7 @@ def upper_bound(self) -> float:
Returns
-------
upper_bound : double
upper_bound : float
Upper bound value of the model.
"""
ret = ctypes.c_double(0)
Expand All @@ -3174,7 +3174,7 @@ def lower_bound(self) -> float:
Returns
-------
lower_bound : double
lower_bound : float
Lower bound value of the model.
"""
ret = ctypes.c_double(0)
Expand Down

0 comments on commit 521fe8d

Please sign in to comment.