From a62a35ec4d2df4596d02da3261b684f2c2151aae Mon Sep 17 00:00:00 2001 From: Maximilian Linhoff Date: Fri, 8 Sep 2023 14:38:28 +0200 Subject: [PATCH] Add estimate_background to __all__ --- pyirf/sensitivity.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyirf/sensitivity.py b/pyirf/sensitivity.py index bdd181d8d..d90b5360e 100644 --- a/pyirf/sensitivity.py +++ b/pyirf/sensitivity.py @@ -13,7 +13,11 @@ from .binning import create_histogram_table, bin_center -__all__ = ["relative_sensitivity", "calculate_sensitivity"] +__all__ = [ + "relative_sensitivity", + "calculate_sensitivity", + "estimate_background", +] log = logging.getLogger(__name__)