Skip to content

Commit

Permalink
minor: fix wrong refence to devito
Browse files Browse the repository at this point in the history
  • Loading branch information
mrava87 committed Feb 28, 2024
1 parent 73900f3 commit 3e50ff4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pylops/signalprocessing/dtcwt.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from pylops.utils.decorators import reshaped
from pylops.utils.typing import DTypeLike, InputDimsLike, NDArray

dtcwt_message = deps.devito_import("the dtcwt module")
dtcwt_message = deps.dtcwt_import("the dtcwt module")

if dtcwt_message is None:
import dtcwt
Expand Down
2 changes: 1 addition & 1 deletion pylops/utils/deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def dtcwt_import(message):
dtcwt_message = (
f"Dtcwt not available. "
f"In order to be able to use "
f'{message} run "pip install devito".'
f'{message} run "pip install dtcwt".'
)
return dtcwt_message

Expand Down

0 comments on commit 3e50ff4

Please sign in to comment.