Compare commits

..

No commits in common. "b3ead47adb984939ded73597b062dd0fe1c2c956" and "93ca059fc0950d361bf2bd85e468fa8200236e90" have entirely different histories.

View file

@ -29,7 +29,7 @@ def _version_callback(value: bool) -> None:
@app.command() @app.command()
def update( def update(
path: Path = typer.Option( path: Path = typer.Option(
Path('.'), Path('./corrlib'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -45,7 +45,7 @@ def update(
@app.command() @app.command()
def lister( def lister(
path: Path = typer.Option( path: Path = typer.Option(
Path('.'), Path('./corrlib'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -76,7 +76,7 @@ def lister(
@app.command() @app.command()
def alias_add( def alias_add(
path: Path = typer.Option( path: Path = typer.Option(
Path('.'), Path('./corrlib'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -94,7 +94,7 @@ def alias_add(
@app.command() @app.command()
def find( def find(
path: Path = typer.Option( path: Path = typer.Option(
Path('.'), Path('./corrlib'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -123,7 +123,7 @@ def find(
@app.command() @app.command()
def stat( def stat(
path: Path = typer.Option( path: Path = typer.Option(
Path('.'), Path('./corrlib'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -142,7 +142,7 @@ def stat(
@app.command() @app.command()
def check(path: Path = typer.Option( def check(path: Path = typer.Option(
Path('.'), Path('./corrlib'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -153,7 +153,7 @@ def check(path: Path = typer.Option(
@app.command() @app.command()
def importer( def importer(
path: Path = typer.Option( path: Path = typer.Option(
Path('.'), Path('./corrlib'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -176,7 +176,7 @@ def importer(
@app.command() @app.command()
def reimporter( def reimporter(
path: Path = typer.Option( path: Path = typer.Option(
Path('.'), Path('./corrlib'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -200,7 +200,7 @@ def reimporter(
@app.command() @app.command()
def init( def init(
path: Path = typer.Option( path: Path = typer.Option(
Path('.'), Path('./corrlib'),
"--dataset", "--dataset",
"-d", "-d",
), ),
@ -220,7 +220,7 @@ def init(
@app.command() @app.command()
def drop_cache( def drop_cache(
path: Path = typer.Option( path: Path = typer.Option(
Path('.'), Path('./corrlib'),
"--dataset", "--dataset",
"-d", "-d",
), ),