From b86750e348440ca732ab304ce9d2bccc0d4b7035 Mon Sep 17 00:00:00 2001 From: Sam-Armstrong Date: Wed, 22 May 2024 02:07:48 +0100 Subject: [PATCH] fix --- update_dashboard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update_dashboard.py b/update_dashboard.py index 61882aa..f1c63e4 100644 --- a/update_dashboard.py +++ b/update_dashboard.py @@ -105,10 +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." - with open("README.md", "w") as f: + with open("DASHBOARD.md", "w") as f: f.write(readme_content) - with open("README.md", "r") as f: + with open("DASHBOARD.md", "r") as f: lines = f.readlines() for line in lines: print(line)