Skip to content

Commit

Permalink
Lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
Obijuan committed Jun 26, 2024
1 parent 42bfbac commit e382e11
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion icm/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,14 @@ def info():
@click.option(
"-a", "--all", is_flag=True, help="Install all stable collections"
)
def install(coltag, dev, all_):
# def install(coltag, dev, all):
def install(**kwargs):
"""Install collections"""

coltag = kwargs["coltag"]
dev = kwargs["dev"]
all_ = kwargs["all"]

cmd_install.main(coltag, dev, all_)


Expand Down

0 comments on commit e382e11

Please sign in to comment.