We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd1aa0 commit 5465a7aCopy full SHA for 5465a7a
1 file changed
src/codestory/core/semantic_analysis/summarization/summarizer_utils.py
@@ -61,15 +61,11 @@ def generate_annotated_patches(
61
patches = []
62
pbar = ProgressBarManager.get_pbar()
63
if pbar is not None:
64
- pbar.set_postfix(
65
- {"phase": "preparing patches", "chunks": f"0/{len(containers)}"}
66
- )
+ pbar.set_postfix({"phase": f"preparing patches 0/{len(containers)}"})
67
68
for i, container in enumerate(containers):
69
70
71
- {"phase": "preparing patches", "chunks": f"{i + 1}/{len(containers)}"}
72
+ pbar.set_postfix({"phase": f"preparing patches {i + 1}/{len(containers)}"})
73
patch = generate_annotated_patch(
74
container=container,
75
context_manager=context_manager,
0 commit comments