Make more args keyword-only

This commit is contained in:
Ines Montani 2020-07-27 00:27:53 +02:00
parent 80271ac0ba
commit 3d56a3f286

View File

@ -110,6 +110,7 @@ class Language:
def __init__( def __init__(
self, self,
vocab: Union[Vocab, bool] = True, vocab: Union[Vocab, bool] = True,
*,
max_length: int = 10 ** 6, max_length: int = 10 ** 6,
meta: Dict[str, Any] = {}, meta: Dict[str, Any] = {},
create_tokenizer: Optional[Callable[["Language"], Callable[[str], Doc]]] = None, create_tokenizer: Optional[Callable[["Language"], Callable[[str], Doc]]] = None,
@ -1268,6 +1269,7 @@ class Language:
def from_config( def from_config(
cls, cls,
config: Union[Dict[str, Any], Config] = {}, config: Union[Dict[str, Any], Config] = {},
*,
disable: Iterable[str] = tuple(), disable: Iterable[str] = tuple(),
overrides: Dict[str, Any] = {}, overrides: Dict[str, Any] = {},
auto_fill: bool = True, auto_fill: bool = True,