diff --git a/backend/api/user/management/commands/backfill_user_profiles.py b/backend/api/user/management/commands/backfill_user_profiles.py index 1fe7275..48237cd 100644 --- a/backend/api/user/management/commands/backfill_user_profiles.py +++ b/backend/api/user/management/commands/backfill_user_profiles.py @@ -1,7 +1,7 @@ # api/user/management/commands/backfill_user_profiles.py from django.core.management.base import BaseCommand from django.contrib.auth.models import User -from api.user.models import UserProfile # assuming you have a UserProfile model +from api.user.models import UserProfile class Command(BaseCommand):