From 87efc76a5e3e271e669212dcf4cc3b4a6707cad2 Mon Sep 17 00:00:00 2001 From: Youyang Gu Date: Tue, 1 Sep 2020 15:08:24 -0400 Subject: [PATCH] Minor updates --- region_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/region_model.py b/region_model.py index 9c2f479d..1ce75463 100644 --- a/region_model.py +++ b/region_model.py @@ -141,7 +141,7 @@ def get_reopen_r(self): We cap the post-reopen R value to prevent exponential growth skewing estimates. """ - if self.LOCKDOWN_R_0 < 1: + if self.LOCKDOWN_R_0 < 1 and self.country_str not in NO_LOCKDOWN_COUNTRIES: return max(self.LOCKDOWN_R_0, self.REOPEN_R) return self.REOPEN_R