From 914a2320c4043e3d033827cf1076e77a3a468fa8 Mon Sep 17 00:00:00 2001 From: Gosuto Inzasheru Date: Wed, 17 Jul 2024 16:58:43 +0200 Subject: [PATCH] fix: dump to root dir --- tools/python/query_upkeeps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/query_upkeeps.py b/tools/python/query_upkeeps.py index caa6bb907..6fe15cd69 100644 --- a/tools/python/query_upkeeps.py +++ b/tools/python/query_upkeeps.py @@ -33,4 +33,4 @@ def get_upkeeps(chain="ethereum"): ]: dfs.append(get_upkeeps(chain)) dfs = pd.concat(dfs) - dfs.to_csv("upkeeps.csv", index=False) + dfs.to_csv("../../upkeeps.csv", index=False)