Skip to content

Commit

Permalink
Minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
youyanggu committed Sep 1, 2020
1 parent 0dc19fb commit 87efc76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion region_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 87efc76

Please sign in to comment.