Skip to content

Commit 66bb76e

Browse files
committed
fix cli
1 parent 431da22 commit 66bb76e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/doc_builder/commands/embeddings.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,12 @@ def embeddings_command_parser(subparsers=None):
7575
else:
7676
parser = argparse.ArgumentParser("Doc Builder embeddings command")
7777

78-
parser.add_argument("library_name", type=str, help="Library name", required=True)
78+
parser.add_argument("library_name", type=str, help="Library name")
7979
parser.add_argument(
8080
"path_to_docs",
8181
type=str,
8282
help="Local path to library documentation. The library should be cloned, and the folder containing the "
8383
"documentation files should be indicated here.",
84-
required=True,
8584
)
8685
parser.add_argument("--hf_ie_name", type=str, help="Inference Endpoints name.", required=True)
8786
parser.add_argument("--hf_ie_namespace", type=str, help="Inference Endpoints namespace.", required=True)

0 commit comments

Comments
 (0)