From 4100b82c1eb0a34182a92908ceca88194a3452ce Mon Sep 17 00:00:00 2001 From: dachengx Date: Sun, 17 Mar 2024 02:37:04 -0500 Subject: [PATCH] Style fix --- appletree/component.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appletree/component.py b/appletree/component.py index bf250928..99d697f5 100644 --- a/appletree/component.py +++ b/appletree/component.py @@ -25,9 +25,9 @@ class Component: rate_name: str = "" norm_type: str = "" - add_eps_to_hist: bool = ( - True # add_eps_to_hist==True was introduced as only a workaround for likelihood blowup problem when using meshgrid binning - ) + # add_eps_to_hist==True was introduced as only a workaround + # for likelihood blowup problem when using meshgrid binning + add_eps_to_hist: bool = True force_no_eff: bool = False def __init__(self, name: Optional[str] = None, llh_name: Optional[str] = None, **kwargs):