From 9ff47087ebb9ef248761c20867b62dbea673111f Mon Sep 17 00:00:00 2001 From: Guille Date: Wed, 31 May 2023 10:49:17 -0400 Subject: [PATCH] Complete basic clean up and warning removal --- sra_engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sra_engine.py b/sra_engine.py index 7737d77..e8618f8 100644 --- a/sra_engine.py +++ b/sra_engine.py @@ -18,7 +18,7 @@ class SraEngine: self._output_file_path = output_file_path self._weather_file = weather_file if platform.system() == 'Linux': - self._executable = 'citysim_sra' + self._executable = 'sra' elif platform.system() == 'Windows': self._executable = 'shortwave_integer' ExportsFactory('sra', self._city, output_file_path, weather_file=self._weather_file, weather_format='epw').export()