Skip to content

Commit

Permalink
adjust entrypoints
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Jul 14, 2024
1 parent a76bc70 commit 5abc972
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ classifiers = [

[project.scripts]
parse_dandi_raw_s3_logs = "dandi_s3_log_parser._command_line_interface:parse_dandi_raw_s3_logs_cli"
find_random_example_line_cli = "dandi_s3_log_parser._command_line_interface:find_random_example_line_cli"
find_random_example_line = "dandi_s3_log_parser._command_line_interface:find_random_example_line_cli"



Expand Down
4 changes: 2 additions & 2 deletions src/dandi_s3_log_parser/_command_line_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@


# TODO
@click.command(name="parse_dandi_raw_s3_logs_cli")
@click.command(name="parse_dandi_raw_s3_logs")
def parse_dandi_raw_s3_log_cli() -> None:
parse_dandi_raw_s3_log()


@click.command(name="find_random_example_line_cli")
@click.command(name="find_random_example_line")
@click.option(
"--raw_s3_log_folder_path",
required=True,
Expand Down

0 comments on commit 5abc972

Please sign in to comment.