Skip to content

Commit 165bb27

Browse files
committed
Fix code style issues with Black
1 parent 7f40fda commit 165bb27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rocketpy/Function.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2505,14 +2505,14 @@ def compose(self, func, extrapolate=False):
25052505
raise TypeError("Input must be a Function object.")
25062506

25072507
if isinstance(self.source, np.ndarray):
2508-
# Perform bounds check for composition
2508+
# Perform bounds check for composition
25092509
if not extrapolate:
25102510
if func.ymin < self.xmin and func.ymax > self.xmax:
25112511
raise ValueError(
25122512
f"Input Function image {func.ymin, func.ymax} must be within "
25132513
f"the domain of the Function {self.xmin, self.xmax}."
25142514
)
2515-
2515+
25162516
return Function(
25172517
np.concatenate(([func.xArray], [self(func.yArray)])).T,
25182518
inputs=func.__inputs__,

0 commit comments

Comments
 (0)