Skip to content

Commit 3835126

Browse files
committed
make download argument lower case to work with typer
1 parent a39a246 commit 3835126

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

databusclient/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ def deploy(
3838
def download(
3939
localDir: str = typer.Option(..., help="local databus folder"),
4040
databus: str = typer.Option(..., help="databus URL"),
41-
databusURIs: List[str] = typer.Argument(...,help="any kind of these: databus identifier, databus collection identifier, query file")
41+
databusuris: List[str] = typer.Argument(...,help="any kind of these: databus identifier, databus collection identifier, query file")
4242
):
43-
client.download(localDir=localDir,endpoint=databus,databusURIs=databusURIs)
43+
client.download(localDir=localDir,endpoint=databus,databusURIs=databusuris)

0 commit comments

Comments
 (0)