From 822d0ee66c71d1e9a7f145a65524d11e55010cb9 Mon Sep 17 00:00:00 2001 From: Sam-Armstrong Date: Wed, 22 May 2024 01:32:00 +0100 Subject: [PATCH] print new readme contents --- update_dashboard.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/update_dashboard.py b/update_dashboard.py index 4ad999d..61882aa 100644 --- a/update_dashboard.py +++ b/update_dashboard.py @@ -105,8 +105,10 @@ readme_content += "\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)