Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion darwin/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,9 @@ def cpu_default_types(input: Any) -> Optional[int]: # type: ignore
help="[Remote] Dataset name: to list all the existing dataset, run 'darwin dataset remote'. ",
)
parser_comment.add_argument("file", type=str, help="File to comment")
parser_comment.add_argument("--text", type=str, help="Comment: list of words")
parser_comment.add_argument(
"--text", type=str, help="Comment: list of words", required=True
)
parser_comment.add_argument(
"--x",
required=False,
Expand Down