Skip to content

Commit

Permalink
πŸ› Fix unload (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
Koncopd authored Sep 19, 2024
1 parent 36ead8e commit 05e7c28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lamin_cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def init(storage: str, db: Optional[str], schema: Optional[str], name: Optional[

# fmt: off
@main.command()
@click.argument("instance", type=str, default=None)
@click.argument("instance", type=str, default=None, required=False)
@click.option("--db", type=str, default=None, help="Update database URL.") # noqa: E501
@click.option("--storage", type=str, default=None, help="Update storage while loading.")
@click.option("--unload", is_flag=True, help="Unload the current instance.")
Expand Down

0 comments on commit 05e7c28

Please sign in to comment.