diff --git a/src/registrar/management/commands/load_organization_data.py b/src/registrar/management/commands/load_organization_data.py index 0036faf45..618e700b0 100644 --- a/src/registrar/management/commands/load_organization_data.py +++ b/src/registrar/management/commands/load_organization_data.py @@ -55,7 +55,8 @@ class Command(BaseCommand): parser.add_argument("--directory", default="migrationdata", help="Desired directory") def handle(self, migration_json_filename, **options): - """Load organization address data into the TransitionDomain and DomainInformation tables by using the organization adhoc file and domain_additional file""" + """Load organization address data into the TransitionDomain + and DomainInformation tables by using the organization adhoc file and domain_additional file""" # Parse JSON file options = self.load_json_settings(options, migration_json_filename) org_args = TransitionDomainArguments(**options) diff --git a/src/registrar/management/commands/utility/extra_transition_domain_helper.py b/src/registrar/management/commands/utility/extra_transition_domain_helper.py index ea3f3911f..04170811f 100644 --- a/src/registrar/management/commands/utility/extra_transition_domain_helper.py +++ b/src/registrar/management/commands/utility/extra_transition_domain_helper.py @@ -800,7 +800,7 @@ class OrganizationDataLoader: return self.tds_to_update def prepare_transition_domains(self, transition_domains): - """Pares org data for each transition domain, + """Parses org data for each transition domain, then appends it to the tds_to_update list""" for item in transition_domains: updated = self.parse_org_data(item.domain_name, item)