diff --git a/opentech/public/people/management/commands/migrate_people.py b/opentech/public/people/management/commands/migrate_people.py
index 76be76594dd234d8e002acbec75a0508a7052ca0..105d37cb220fd068c949c4802c29c9e27bcaa85d 100644
--- a/opentech/public/people/management/commands/migrate_people.py
+++ b/opentech/public/people/management/commands/migrate_people.py
@@ -103,9 +103,8 @@ class Command(BaseCommand):
             '393': Page.objects.get(title='Internet Freedom Fund'),
             '389': Page.objects.get(title='Rapid Response Fund'),
             '391': Page.objects.get(title='Core Infrastructure Fund'),
-            '': Page.objects.get(title='Community Lab'),
+            'NOT_USED': Page.objects.get(title='Community Lab'),
             '394': Page.objects.get(title='Information Controls Fellowship'),
-            '': None,
             '390': Page.objects.get(title='Digital Integrity Fellowship'),
         }
 
diff --git a/opentech/public/people/models.py b/opentech/public/people/models.py
index 9d167ac7a1ca98fe447e78cadd885f3c980d80b1..dd43e3b57fbfd4637369b79a5c5cccfdc32a6826 100644
--- a/opentech/public/people/models.py
+++ b/opentech/public/people/models.py
@@ -1,6 +1,5 @@
 from django.db import models
 from django.core.exceptions import ValidationError
-from django.utils.functional import cached_property
 from django.core.paginator import EmptyPage, PageNotAnInteger, Paginator
 from django.conf import settings