Skip to content

Commit ed933e1

Browse files
committed
Fix newline formatting in status output
- Changed \\n to \n for proper newlines - Removes literal \n artifacts in output - Cleaner status display Ref: #38
1 parent 26c61ac commit ed933e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

check_hf_status.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ not_started_count = 0
195195
for author in AUTHORS:
196196
status = check_author_status(author)
197197
198-
print(f"\\n{author.upper()}")
198+
print(f"\n{author.upper()}")
199199
print("-" * 80)
200200
201201
if status is None:
@@ -234,15 +234,15 @@ for author in AUTHORS:
234234
in_progress_count += 1
235235
236236
# Summary
237-
print("\\n" + "=" * 80)
237+
print("\n" + "=" * 80)
238238
print("SUMMARY")
239239
print("=" * 80)
240240
print(f"Completed: {completed_count}/8")
241241
print(f"In progress: {in_progress_count}/8")
242242
print(f"Not started: {not_started_count}/8")
243243
244244
if in_progress_count > 0 or completed_count < 8:
245-
print("\\nTo download completed models:")
245+
print("\nTo download completed models:")
246246
print(" ./sync_hf_models.sh --cluster CLUSTER")
247247
248248
ENDPYTHON

0 commit comments

Comments
 (0)