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 Dec 3, 2023
1 parent b83059c commit d4dbbce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rocketpy/mathutils/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ def get_value_opt_multiple(*args):
if len(zero_distance_index) > 0:
return y_data[zero_distance_index[0]]

weights = distances_squared**(-1.5)
weights = distances_squared ** (-1.5)
numerator_sum = np.sum(y_data * weights)
denominator_sum = np.sum(weights)

Expand Down

0 comments on commit d4dbbce

Please sign in to comment.