Skip to content

Commit

Permalink
Merge pull request #705 from devinit/fix/iati-rhfp
Browse files Browse the repository at this point in the history
Fix | IATI RHFP - Creation of Folder
  • Loading branch information
edwinmp authored May 27, 2022
2 parents 648290a + 648420e commit 516d182
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions data_updates/Python/iati_rhfp.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
import pandas as pd
from github import Github, InputGitTreeElement

try:
os.mkdir("iati_csv")
except:
print("Folder already exists!")

GITHUB_TOKEN = os.getenv('GITHUB_TOKEN', None)

Expand Down

0 comments on commit 516d182

Please sign in to comment.