Skip to content

Commit 4256839

Browse files
committed
removed blank lines
1 parent d13a32b commit 4256839

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

stumpy/cache.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,15 +137,12 @@ def _recompile(func=None, fastmath=None):
137137
module = importlib.import_module(f".{module_name}", package="stumpy")
138138
func = getattr(module, func_name)
139139
func.recompile()
140-
141140
else:
142141
if not numba.extending.is_jitted(func):
143142
msg = "The function `func` must be a (n)jit function."
144143
raise ValueError(msg)
145-
146144
if fastmath is not None:
147145
func.targetoptions["fastmath"] = fastmath
148-
149146
func.recompile()
150147

151148
return

0 commit comments

Comments
 (0)