Skip to content

Commit

Permalink
fix cli
Browse files Browse the repository at this point in the history
  • Loading branch information
mishig25 committed Jun 25, 2024
1 parent 431da22 commit 66bb76e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/doc_builder/commands/embeddings.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,12 @@ def embeddings_command_parser(subparsers=None):
else:
parser = argparse.ArgumentParser("Doc Builder embeddings command")

parser.add_argument("library_name", type=str, help="Library name", required=True)
parser.add_argument("library_name", type=str, help="Library name")
parser.add_argument(
"path_to_docs",
type=str,
help="Local path to library documentation. The library should be cloned, and the folder containing the "
"documentation files should be indicated here.",
required=True,
)
parser.add_argument("--hf_ie_name", type=str, help="Inference Endpoints name.", required=True)
parser.add_argument("--hf_ie_namespace", type=str, help="Inference Endpoints namespace.", required=True)
Expand Down

0 comments on commit 66bb76e

Please sign in to comment.