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 c00e2dd commit 1d75f80Copy full SHA for 1d75f80
rocketpy/rocket/rocket.py
@@ -389,7 +389,6 @@ def _check_missing_components(self):
389
390
This method verifies whether the rocket has the following key components:
391
- motor
392
- - parachute(s)
393
- aerodynamic surface(s)
394
395
If any of these components are missing, a single warning message is issued
@@ -402,8 +401,6 @@ def _check_missing_components(self):
402
401
missing_components = []
403
if isinstance(self.motor, EmptyMotor):
404
missing_components.append("motor")
405
- if not self.parachutes:
406
- missing_components.append("parachutes")
407
if not self.aerodynamic_surfaces or len(self.aerodynamic_surfaces) == 0:
408
missing_components.append("aerodynamic surfaces")
409
0 commit comments