From deb39bae600dbd9b9e3772f6adcc8b1c4572d0d3 Mon Sep 17 00:00:00 2001 From: William Armstrong Date: Tue, 3 Dec 2024 10:37:49 -0700 Subject: [PATCH] fix date and location atmosphere update formatting --- rocketpy/environment/environment.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/rocketpy/environment/environment.py b/rocketpy/environment/environment.py index 7a215b022..8ea8826f6 100644 --- a/rocketpy/environment/environment.py +++ b/rocketpy/environment/environment.py @@ -688,7 +688,9 @@ def set_date(self, date, timezone="UTC"): "Ensemble", ]: self.set_atmospheric_model( - type=self.atmospheric_model_type, file=self.atmospheric_model_file, dictionary=self.atmospheric_model_dict + type=self.atmospheric_model_type, + file=self.atmospheric_model_file, + dictionary=self.atmospheric_model_dict ) def set_location(self, latitude, longitude): @@ -726,7 +728,9 @@ def set_location(self, latitude, longitude): "Ensemble", ]: self.set_atmospheric_model( - type=self.atmospheric_model_type, file=self.atmospheric_model_file, dictionary=self.atmospheric_model_dict + type=self.atmospheric_model_type, + file=self.atmospheric_model_file, + dictionary=self.atmospheric_model_dict ) def set_gravity_model(self, gravity=None):