From 8691a02f65484980c76cbe64e1a2c6537e4c5199 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francesc=20Mart=C3=AD=20Escofet?= <154450563+FrancescMartiEscofetQC@users.noreply.github.com> Date: Mon, 24 Jun 2024 15:40:12 +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 095c2f8..cf9fde1 100644 --- a/metalearners/_utils.py +++ b/metalearners/_utils.py @@ -468,7 +468,7 @@ def simplify_output_2d(tensor: np.ndarray) -> np.ndarray: # Taken from https://stackoverflow.com/questions/13741998/is-there-a-way-to-let-classes-inherit-the-documentation-of-their-superclass-with def copydoc(fromfunc, sep="\n"): """ - Decorator: Copy the docstring of `fromfunc` + Decorator: Copy the docstring of ``fromfunc`` """ def _decorator(func):