🐛 fix(__main__.py): make cache argument optional in update_settings function to allow not passing a value for it
This commit is contained in:
parent
15cd835a0c
commit
250b11b5d9
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ app = typer.Typer()
|
|||
|
||||
def update_settings(
|
||||
config: str,
|
||||
cache: str,
|
||||
cache: Optional[str] = None,
|
||||
dev: bool = False,
|
||||
remove_api_keys: bool = False,
|
||||
components_path: Optional[Path] = None,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue