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 Nov 12, 2023
1 parent 5eb5ca4 commit 032aaa8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rocketpy/mathutils/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,11 @@ def set_source(self, source):
self : Function
"""
inputs, outputs, interpolation, extrapolation = self._check_user_input(
source, self.__inputs__, self.__outputs__, self.__interpolation__, self.__extrapolation__
source,
self.__inputs__,
self.__outputs__,
self.__interpolation__,
self.__extrapolation__,
)
# If the source is a Function
if isinstance(source, Function):
Expand Down

0 comments on commit 032aaa8

Please sign in to comment.