From cd4dd4a71920e2bf9629191420ef42e449611f19 Mon Sep 17 00:00:00 2001 From: Guille Date: Fri, 29 May 2020 07:25:33 -0400 Subject: [PATCH] shared wall implementation bug fixing --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 539c94f..24b0878 100644 --- a/main.py +++ b/main.py @@ -11,7 +11,7 @@ name_gml = '2050 bp_2buildings' name_cli = 'inseldb_New_York_City.cli' name_weather = 'inseldb_New_York_City.dat' example_path = (Path(__file__).parent / 'examples/NYC_2buildings').resolve() -full_path_gml = (example_path / 'inputs' / (name_gml + '.gml')).resolve() +full_path_gml = (example_path / 'inputs' / ('3buildings.xml')).resolve() full_path_cli = (example_path / 'inputs' / name_cli).resolve() full_path_weather = (example_path / 'inputs' / name_weather).resolve() outputs_path = (example_path / 'outputs').resolve()