Skip to content

Commit 19e7a3d

Browse files
authored
Merge pull request #20 from ollama/BruceMacD-pull-example-type
fix pull example typo
2 parents 2e0b2e1 + 9bfa1d1 commit 19e7a3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pull-progress/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
continue
1414

1515
if digest not in bars and (total := progress.get('total')):
16-
bars[digest] = tqdm(total=total, desc=f'pushing {digest[7:19]}', unit='B', unit_scale=True)
16+
bars[digest] = tqdm(total=total, desc=f'pulling {digest[7:19]}', unit='B', unit_scale=True)
1717

1818
if completed := progress.get('completed'):
1919
bars[digest].update(completed - bars[digest].n)

0 commit comments

Comments
 (0)