Skip to content

Commit

Permalink
CLI linting
Browse files Browse the repository at this point in the history
  • Loading branch information
caufieldjh committed Aug 29, 2024
1 parent acd0420 commit cce2e8a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ontogpt/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,9 +365,11 @@ def parse_tabular_input(inputpath: str, selectcols: List[str]) -> str:
max_text_length_option = click.option(
"--max-text-length",
type=click.INT,
help="Maximum text length in characters for each input chunk. Dependent on context size of model used.",
help="Maximum text length in characters for each input chunk."
" By default, the entire input is passed to the model.",
)


@click.group()
@click.option("-v", "--verbose", count=True)
@click.option("-q", "--quiet")
Expand Down

0 comments on commit cce2e8a

Please sign in to comment.