From 826614db6115ad9f62306adac43db902e6b869c8 Mon Sep 17 00:00:00 2001 From: Dmitry Shemetov Date: Fri, 7 May 2021 15:01:02 -0700 Subject: [PATCH] Nans: rename PRIVACY to CENSORED and UNKNOWN to OTHER --- _delphi_utils_python/delphi_utils/nancodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_delphi_utils_python/delphi_utils/nancodes.py b/_delphi_utils_python/delphi_utils/nancodes.py index e9e5a915a..985b8fa99 100644 --- a/_delphi_utils_python/delphi_utils/nancodes.py +++ b/_delphi_utils_python/delphi_utils/nancodes.py @@ -8,6 +8,6 @@ class Nans(IntEnum): NOT_MISSING = 0 NOT_APPLICABLE = 1 REGION_EXCEPTION = 2 - PRIVACY = 3 + CENSORED = 3 DELETED = 4 - UNKNOWN = 5 + OTHER = 5