From 91036548e0f2dea50e1f945230fbffc0aa739888 Mon Sep 17 00:00:00 2001 From: Alex Lyt <68500273+BigToothDev@users.noreply.github.com> Date: Sat, 19 Oct 2024 22:06:52 +0300 Subject: [PATCH] Update PATH app.py --- app_files/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app_files/app.py b/app_files/app.py index b1fba1d..c558832 100644 --- a/app_files/app.py +++ b/app_files/app.py @@ -14,7 +14,7 @@ #with open('./app_files/geoBoundaries-UKR-ADM1.geojson', 'r', encoding='utf-8') as geo_file: # ukraine_geojson = json.load(geo_file) -base_path = Path('./app_files') +base_path = Path('./docs') df_ukr_pop_region_all_flows_2021 = pd.read_csv(base_path / 'ukr_pop_region_all_flows_total_2021.csv', sep=",", decimal=".") df_ukr_pop_region_all_flows_2020 = pd.read_csv(base_path / 'ukr_pop_region_all_flows_total_2020.csv', sep=",", decimal=".") df_ukr_pop_region_all_flows_2019 = pd.read_csv(base_path / 'ukr_pop_region_all_flows_total_2019.csv', sep=",", decimal=".") @@ -263,4 +263,4 @@ def ukraine_population(): ) return ui.HTML(fig.to_html(full_html=False)) -app = App(app_ui, server) \ No newline at end of file +app = App(app_ui, server)