Skip to content

Commit

Permalink
Fix mypy issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
rmitsch committed Jul 13, 2023
1 parent 4236942 commit f9dddbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spacy/cli/init_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ def init_config(
*,
lang: str = InitValues.lang,
pipeline: List[str] = InitValues.pipeline,
llm_model: str = InitValues.llm_model,
llm_task: str = InitValues.llm_task,
llm_model: Optional[str] = InitValues.llm_model,
llm_task: Optional[str] = InitValues.llm_task,
optimize: str = InitValues.optimize,
gpu: bool = InitValues.gpu,
pretraining: bool = InitValues.pretraining,
Expand Down

0 comments on commit f9dddbb

Please sign in to comment.