Skip to content

Commit

Permalink
fix: move down two subdirs
Browse files Browse the repository at this point in the history
  • Loading branch information
gosuto-inzasheru committed Jul 17, 2024
1 parent 945d31e commit d446349
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/python/query_upkeeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ def get_upkeeps(chain="ethereum"):
"gnosis",
]:
dfs.append(get_upkeeps(chain))
os.makedirs("../../out", exist_ok=True)
os.makedirs("out", exist_ok=True)
dfs = pd.concat(dfs)
dfs.to_csv("../../out/upkeeps.csv", index=False)
dfs.to_csv("out/upkeeps.csv", index=False)

0 comments on commit d446349

Please sign in to comment.