From e3f7d5ecfa88edb8f635969b56739d35aef1e266 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francesc=20Mart=C3=AD=20Escofet?= <154450563+FrancescMartiEscofetQC@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:24:28 +0200 Subject: [PATCH] Update metalearners/_utils.py Co-authored-by: Kevin Klein <7267523+kklein@users.noreply.github.com> --- metalearners/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metalearners/_utils.py b/metalearners/_utils.py index 919d7a2..ffcfbcc 100644 --- a/metalearners/_utils.py +++ b/metalearners/_utils.py @@ -490,7 +490,7 @@ def default_metric(predict_method: PredictMethod) -> str: def check_onnx_installed(): - """Checks that *onnx* is available.""" + """Ensure that ``onnx`` is available.""" try: import onnx # noqa F401 except ImportError: