Update load_organization_data.py

This commit is contained in:
zandercymatics 2023-11-20 11:19:55 -07:00
parent 8544c2948f
commit 42ef026254
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -67,7 +67,7 @@ class Command(BaseCommand):
# If any key in skipped_fields has a value, then
# we override what is specified in the JSON.
if key not in skipped_fields:
if options not in skipped_fields or options[key] is not None:
options[key] = value
except Exception as err: