Skip to content

Commit

Permalink
added type hint (#4070)
Browse files Browse the repository at this point in the history
  • Loading branch information
deddyjobson authored Mar 14, 2021
1 parent bcf443b commit 96728a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python-package/lightgbm/libpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
"""Find the path to LightGBM dynamic library files."""
import os
from platform import system
from typing import List


def find_lib_path():
def find_lib_path() -> List[str]:
"""Find the path to LightGBM library files.
Returns
Expand Down

0 comments on commit 96728a0

Please sign in to comment.