make logging not use f-str, change others to f-str (#22882)
This commit is contained in:
parent
570aee5fe6
commit
a189d293f8
164 changed files with 557 additions and 563 deletions
|
|
@ -19,7 +19,7 @@ def clean_notion_document_task(document_ids: list[str], dataset_id: str):
|
|||
Usage: clean_notion_document_task.delay(document_ids, dataset_id)
|
||||
"""
|
||||
logging.info(
|
||||
click.style("Start clean document when import form notion document deleted: {}".format(dataset_id), fg="green")
|
||||
click.style(f"Start clean document when import form notion document deleted: {dataset_id}", fg="green")
|
||||
)
|
||||
start_at = time.perf_counter()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue