diff --git a/.idea/runConfigurations/voterwarehouse.xml b/.idea/runConfigurations/voterwarehouse.xml
index f418985..bf33761 100644
--- a/.idea/runConfigurations/voterwarehouse.xml
+++ b/.idea/runConfigurations/voterwarehouse.xml
@@ -12,7 +12,7 @@
-
+
diff --git a/Import/Florida.py b/Import/Florida.py
index da38e2c..ecfdbc3 100644
--- a/Import/Florida.py
+++ b/Import/Florida.py
@@ -174,6 +174,8 @@ def parse_raw_voter_into_tuple(self, voter_raw: bytes, export_date: str) -> tupl
row[k] = ""
# Ensuring email addresses are in lower case
row["email_address"] = row["email_address"].lower()
+ if row["race"] == '':
+ row["race"] = None
return tuple(row.values())
def import_source(self, file: str, t: str) -> None: