mirror of https://github.com/explosion/spaCy.git
Update docstring to match spaCy format.
This commit is contained in:
parent
4049c57521
commit
6a1da21e26
|
@ -1763,11 +1763,9 @@ def find_available_port(start: int, host: str, auto_select: bool = False) -> int
|
||||||
|
|
||||||
If `auto_select` is True, the next free higher port will be used.
|
If `auto_select` is True, the next free higher port will be used.
|
||||||
|
|
||||||
Keyword arguments:
|
start (int): the port to start looking from
|
||||||
start -- the port to start looking from
|
host (str): the host to find a port on
|
||||||
host -- the host to find a port on
|
auto_select (bool): whether to automatically select a new port if the given port is busy (default False)
|
||||||
auto_select -- whether to automatically select a new port if the given port is busy (default False)
|
|
||||||
|
|
||||||
RETURNS (int): The port to use.
|
RETURNS (int): The port to use.
|
||||||
"""
|
"""
|
||||||
if not _is_port_in_use(start, host):
|
if not _is_port_in_use(start, host):
|
||||||
|
|
Loading…
Reference in New Issue