Skip to content

Commit d75e11c

Browse files
committed
Fix code style issues with Black
1 parent 44d00c1 commit d75e11c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

rocketpy/environment/environment.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,9 @@ def max_expected_height(self):
482482
@max_expected_height.setter
483483
def max_expected_height(self, value):
484484
if value < self.elevation:
485-
raise ValueError("Max expected height cannot be lower than the surface elevation")
485+
raise ValueError(
486+
"Max expected height cannot be lower than the surface elevation"
487+
)
486488
self._max_expected_height = value
487489
self.plots.grid = np.linspace(self.elevation, self.max_expected_height)
488490

0 commit comments

Comments
 (0)