Skip to content

Commit

Permalink
print new readme contents
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-Armstrong committed May 22, 2024
1 parent bb7a826 commit 822d0ee
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions update_dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,10 @@
readme_content += "</div>\n\n"
readme_content += "\nThis dashboard is automatically updated nightly. If it hasn't been updated in within the last couple of days, feel free to raise an issue on the ivy repo."

print(readme_content)

# Write the content to README.md
with open("README.md", "w") as f:
f.write(readme_content)

with open("README.md", "r") as f:
lines = f.readlines()
for line in lines:
print(line)

0 comments on commit 822d0ee

Please sign in to comment.