Skip to content

Commit

Permalink
Fix docs error
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilwoodruff committed Sep 3, 2024
1 parent 928984f commit a2d6da7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/Home.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import streamlit as st
from .download import download_data
from download_prerequisites import download_data

download_data()

Expand Down
2 changes: 1 addition & 1 deletion docs/download.py → docs/download_prerequisites.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from policyengine_us_data.data_storage import STORAGE_FOLDER

def download_data():
if (not STORAGE_FOLDER / "enhanced_cps_2024.h5").exists():
if not (STORAGE_FOLDER / "enhanced_cps_2024.h5").exists():
download(
"PolicyEngine",
"policyengine-us-data",
Expand Down

0 comments on commit a2d6da7

Please sign in to comment.