We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64943b8 commit 0150e5cCopy full SHA for 0150e5c
tasks/data_retrieval/create_tasks_data.py
@@ -241,6 +241,7 @@ def _get_task_type(
241
version=pkg_version,
242
task_list=task_list,
243
)
244
+ ntasks = len(task_list)
245
except Exception as e:
246
print(f"ERROR, skip.\nOriginal error:\n{str(e)}")
247
@@ -249,7 +250,7 @@ def _get_task_type(
249
250
TASK_GROUPS.append(task_group)
251
252
t_end = time.perf_counter()
- print(f"END processing {source=} - elapsed {t_end-t_start:.3f} s.")
253
+ print(f"END processing {source=} - version={pkg_version}' - added {ntasks} tasks - elapsed {t_end-t_start:.3f} s.")
254
print()
255
256
output_file = Path(__file__).parent / "tasks_data.json"
0 commit comments