mirror of https://github.com/explosion/spaCy.git
Make more args keyword-only
This commit is contained in:
parent
80271ac0ba
commit
3d56a3f286
|
@ -110,6 +110,7 @@ class Language:
|
|||
def __init__(
|
||||
self,
|
||||
vocab: Union[Vocab, bool] = True,
|
||||
*,
|
||||
max_length: int = 10 ** 6,
|
||||
meta: Dict[str, Any] = {},
|
||||
create_tokenizer: Optional[Callable[["Language"], Callable[[str], Doc]]] = None,
|
||||
|
@ -1268,6 +1269,7 @@ class Language:
|
|||
def from_config(
|
||||
cls,
|
||||
config: Union[Dict[str, Any], Config] = {},
|
||||
*,
|
||||
disable: Iterable[str] = tuple(),
|
||||
overrides: Dict[str, Any] = {},
|
||||
auto_fill: bool = True,
|
||||
|
|
Loading…
Reference in New Issue