From cfcdac41efcb3e99110f09eccc95d60234ab2924 Mon Sep 17 00:00:00 2001 From: CocoByte Date: Tue, 11 Jun 2024 20:29:25 -0600 Subject: [PATCH] more fixes - don't know why I added these lines in --- src/registrar/management/commands/populate_organization_type.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/registrar/management/commands/populate_organization_type.py b/src/registrar/management/commands/populate_organization_type.py index e25b5d614..a7dd98b24 100644 --- a/src/registrar/management/commands/populate_organization_type.py +++ b/src/registrar/management/commands/populate_organization_type.py @@ -125,7 +125,6 @@ class Command(BaseCommand): if request_is_approved and domain_name is not None and not request.is_election_board: request.is_election_board = domain_name in self.domains_with_election_boards_set - self.sync_yes_no_form_fields() self.sync_organization_type(DomainRequest, request) self.request_to_update.append(request) logger.info(f"Updating {request} => {request.organization_type}") @@ -176,7 +175,6 @@ class Command(BaseCommand): if not info.is_election_board: info.is_election_board = domain_name in self.domains_with_election_boards_set - self.sync_yes_no_form_fields() self.sync_organization_type(DomainInformation, info) self.di_to_update.append(info)