From dcd9330e22b5098951b5778f3045f92316087983 Mon Sep 17 00:00:00 2001 From: Tyler Date: Thu, 23 May 2024 11:05:40 -0700 Subject: [PATCH] Support "long" predicateTypes. --- census/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/census/core.py b/census/core.py index 727570a..b8fa97b 100644 --- a/census/core.py +++ b/census/core.py @@ -221,6 +221,7 @@ def _field_type(self, field, year): types = {"fips-for": str, "fips-in": str, "int": float_or_str, + "long": float_or_str, "float": float, "string": str}