Skip to content

Commit

Permalink
Hotfix - Add missing dry_run sig to function
Browse files Browse the repository at this point in the history
  • Loading branch information
regiellis committed Nov 24, 2024
1 parent 528cb19 commit df06c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion invokeai_models_cli/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@ def compare_models_display() -> None:
compare_models(local_models, database_models)


def sync_models_commands():
def sync_models_commands(dry_run: bool = False) -> None:
local_models = collect_model_info(MODELS_DIR)
db_models = process_tuples(
get_db(connection=True).execute("SELECT * FROM models").fetchall()
Expand Down

0 comments on commit df06c0e

Please sign in to comment.