From 3e50ff40897d3866af819e5e9f7974815f5c7485 Mon Sep 17 00:00:00 2001 From: mrava87 Date: Wed, 28 Feb 2024 15:19:51 +0200 Subject: [PATCH] minor: fix wrong refence to devito --- pylops/signalprocessing/dtcwt.py | 2 +- pylops/utils/deps.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pylops/signalprocessing/dtcwt.py b/pylops/signalprocessing/dtcwt.py index 59b0e7aa..2c78ff52 100644 --- a/pylops/signalprocessing/dtcwt.py +++ b/pylops/signalprocessing/dtcwt.py @@ -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 diff --git a/pylops/utils/deps.py b/pylops/utils/deps.py index 7664355b..c805a9a3 100644 --- a/pylops/utils/deps.py +++ b/pylops/utils/deps.py @@ -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