Skip to content

Commit

Permalink
Fix code style issues with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Oct 4, 2023
1 parent d569dc7 commit 69d8b35
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rocketpy/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,9 @@ def liftoff_speed(mass):
source = np.array(list(zip(x, y)), dtype=np.float64)

retfunc = Function(
source, inputs="Rocket Mass without motor (kg)", outputs="Out of Rail Speed (m/s)"
source,
inputs="Rocket Mass without motor (kg)",
outputs="Out of Rail Speed (m/s)",
)
if plot:
retfunc.plot(min_mass, max_mass, points)
Expand Down

0 comments on commit 69d8b35

Please sign in to comment.