We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44d00c1 commit d75e11cCopy full SHA for d75e11c
1 file changed
rocketpy/environment/environment.py
@@ -482,7 +482,9 @@ def max_expected_height(self):
482
@max_expected_height.setter
483
def max_expected_height(self, value):
484
if value < self.elevation:
485
- raise ValueError("Max expected height cannot be lower than the surface elevation")
+ raise ValueError(
486
+ "Max expected height cannot be lower than the surface elevation"
487
+ )
488
self._max_expected_height = value
489
self.plots.grid = np.linspace(self.elevation, self.max_expected_height)
490
0 commit comments