Skip to content

Commit cf98bb3

Browse files
committed
fix date and location atmosphere update formatting
1 parent cb25bad commit cf98bb3

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

rocketpy/environment/environment.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,9 @@ def set_date(self, date, timezone="UTC"):
688688
"Ensemble",
689689
]:
690690
self.set_atmospheric_model(
691-
type=self.atmospheric_model_type, file=self.atmospheric_model_file, dictionary=self.atmospheric_model_dict
691+
type=self.atmospheric_model_type,
692+
file=self.atmospheric_model_file,
693+
dictionary=self.atmospheric_model_dict,
692694
)
693695

694696
def set_location(self, latitude, longitude):
@@ -726,7 +728,9 @@ def set_location(self, latitude, longitude):
726728
"Ensemble",
727729
]:
728730
self.set_atmospheric_model(
729-
type=self.atmospheric_model_type, file=self.atmospheric_model_file, dictionary=self.atmospheric_model_dict
731+
type=self.atmospheric_model_type,
732+
file=self.atmospheric_model_file,
733+
dictionary=self.atmospheric_model_dict,
730734
)
731735

732736
def set_gravity_model(self, gravity=None):

0 commit comments

Comments
 (0)