Skip to content

Commit

Permalink
chore: remove unnecessary option type for click args
Browse files Browse the repository at this point in the history
  • Loading branch information
neindochoh committed Sep 14, 2023
1 parent 868dfa3 commit b44d4e3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions renumics/spotlight/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,11 @@ def cli_dtype_callback(
@click.command() # type: ignore
@click.argument(
"dataset",
type=Optional[str],
required=False,
default=os.environ.get("SPOTLIGHT_TABLE_FILE"),
)
@click.option(
"--folder",
type=str,
help="Root folder for filebrowser and file lookup.",
required=False,
)
Expand All @@ -60,7 +58,6 @@ def cli_dtype_callback(
@click.option(
"--port",
"-p",
type=str,
default="auto",
help="The port that Spotlight should listen on (use 'auto' to use a random free port)",
show_default=True,
Expand Down

0 comments on commit b44d4e3

Please sign in to comment.