Skip to content
Snippets Groups Projects
Commit 1fd57d62 authored by Tomi Valentová's avatar Tomi Valentová
Browse files

add none check

parent e2902ea9
No related branches found
No related tags found
2 merge requests!1112add none check,!1110Add none check
Pipeline #19387 passed
......@@ -165,6 +165,9 @@ class PeopleGroupImporter:
people_instances = []
for person_id, profile in people_profiles.items():
if profile is None:
continue
person = OctopusPerson.objects.filter(octopus_id=person_id).first()
attribute_mapping = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment