File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ not_started_count = 0
195195for 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)
238238print("SUMMARY")
239239print("=" * 80)
240240print(f"Completed: {completed_count}/8")
241241print(f"In progress: {in_progress_count}/8")
242242print(f"Not started: {not_started_count}/8")
243243
244244if 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
248248ENDPYTHON
You can’t perform that action at this time.
0 commit comments