From 2aa7e4cd015746d893512780e1667f910cea735c Mon Sep 17 00:00:00 2001 From: Louis Varriano <139183994+lvarriano@users.noreply.github.com> Date: Thu, 5 Dec 2024 06:22:25 -0800 Subject: [PATCH] fix NormalConstraint not appearing in docs (#1059) Found the missing line needed to address #1058 --- src/iminuit/cost.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/iminuit/cost.py b/src/iminuit/cost.py index 76a75436..dee67d9f 100644 --- a/src/iminuit/cost.py +++ b/src/iminuit/cost.py @@ -131,6 +131,7 @@ class documentation for details. "ExtendedUnbinnedNLL", "Template", "LeastSquares", + "NormalConstraint", ] T = TypeVar("T", float, NDArray)