Skip to content

Commit 70fb494

Browse files
committed
Fix comment in import_func_from_string
1 parent 4c7b494 commit 70fb494

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pytensor/tensor/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def import_func_from_string(func_string: str): # -> Optional[Callable]:
120120
if func is not None:
121121
return func
122122

123-
# Not inside NumPy or Scipy. So probably another package like scipy.
123+
# Not inside NumPy. So probably another package like Scipy.
124124
module = None
125125
items = func_string.split(".")
126126
for idx in range(1, len(items)):

0 commit comments

Comments
 (0)