From 3bbd204ad6421df64fc52bd6a265eeae9b297cc8 Mon Sep 17 00:00:00 2001 From: Matthew Kirk Date: Tue, 9 Feb 2021 15:32:46 +0100 Subject: [PATCH] Fix code typo Somehow this find+replace got mucked up --- flavio/physics/kdecays/kpipi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flavio/physics/kdecays/kpipi.py b/flavio/physics/kdecays/kpipi.py index 044360bf..a83ee570 100644 --- a/flavio/physics/kdecays/kpipi.py +++ b/flavio/physics/kdecays/kpipi.py @@ -150,7 +150,7 @@ def epsprime_SM(par): ReA0 = par['ReA0(K->pipi)'] ReA2 = par['ReA2(K->pipi)'] # eq. (19) of arXiv:1507.06345 - flavio.default_citationsitations.register("Buras:2015yba") + flavio.default_citations.register("Buras:2015yba") return (-par['omega+'] / (sqrt(2) * par['eps_K']) * (ImA0 / ReA0 * (1 - par['Omegahat_eff']) - 1 / a * ImA2 / ReA2).real) @@ -166,7 +166,7 @@ def epsprime_NP(wc_obj, par): ReA2 = par['ReA2(K->pipi)'] a = par['epsp a'] # eq. (16) # dividing by a to remove the isospin brk corr in omega+, cf. (16) in 1507.06345 - flavio.default_citationsitations.register("Buras:2015yba") + flavio.default_citations.register("Buras:2015yba") return (-par['omega+'] / a / (sqrt(2) * par['eps_K']) * (ImA0 / ReA0 - ImA2 / ReA2).real)