🐛 fix(__main__.py): make cache argument optional in update_settings function to allow not passing a value for it

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-09-11 14:21:45 -03:00
commit 250b11b5d9

View file

@ -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,