Sfoglia il codice sorgente

fix: typo $ mark in logs of vdb migrate command (#2901)

tags/0.6.0-preview-workflow.1
Bowen Liang 1 anno fa
parent
commit
d018e279f8
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      api/commands.py

+ 1
- 1
api/commands.py Vedi File

@@ -254,7 +254,7 @@ def migrate_knowledge_vector_database():
for dataset in datasets:
total_count = total_count + 1
click.echo(f'Processing the {total_count} dataset {dataset.id}. '
+ f'{create_count} created, ${skipped_count} skipped.')
+ f'{create_count} created, {skipped_count} skipped.')
try:
click.echo('Create dataset vdb index: {}'.format(dataset.id))
if dataset.index_struct_dict:

Loading…
Annulla
Salva