Skip to content

Commit

Permalink
#142 Fixed param_decls of the extra options
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Oct 10, 2024
1 parent 2be34dd commit 20cd42c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions exasol_sagemaker_extension/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@

opts = select_std_options([StdTags.DB, StdTags.BFS, StdTags.SLC],
exclude=StdParams.language_alias, formatters=formatters)
opts.append(click.Option('--to-print/--no-to-print', type=bool, default=False))
opts.append(click.Option('--develop/--no-develop', type=bool, default=False))
opts.append(click.Option('--deploy-slc/--no-deploy-slc', type=bool, default=True))
opts.append(click.Option('--deploy-scripts/--no-deploy-scripts', type=bool, default=True))
opts.append(click.Option(['--to-print/--no-to-print'], type=bool, default=False))
opts.append(click.Option(['--develop/--no-develop'], type=bool, default=False))
opts.append(click.Option(['--deploy-slc/--no-deploy-slc'], type=bool, default=True))
opts.append(click.Option(['--deploy-scripts/--no-deploy-scripts'], type=bool, default=True))


def deploy(deploy_slc: bool, deploy_scripts: bool, **kwargs):
Expand Down

0 comments on commit 20cd42c

Please sign in to comment.