Fix linter issues

This commit is contained in:
Rebecca Hsieh 2024-04-23 11:46:33 -07:00
parent 2088330db0
commit 070ff6223a
No known key found for this signature in database
3 changed files with 8 additions and 7 deletions

View file

@ -5,7 +5,6 @@ within Domain Information and Domain Requests
""" """
import logging import logging
import copy
from django.core.management import BaseCommand from django.core.management import BaseCommand
from registrar.models import DomainInformation, DomainRequest, FederalAgency from registrar.models import DomainInformation, DomainRequest, FederalAgency
@ -21,7 +20,8 @@ class Command(BaseCommand):
# Deprecated federal agency names mapped to designated replacements {old_value, new value} # Deprecated federal agency names mapped to designated replacements {old_value, new value}
rename_deprecated_federal_agency = { rename_deprecated_federal_agency = {
"Appraisal Subcommittee": "Appraisal Subcommittee of the Federal Financial Institutions Examination Council", "Appraisal Subcommittee": "Appraisal Subcommittee of the Federal Financial Institutions Examination Council",
"Barry Goldwater Scholarship and Excellence in Education Program": "Barry Goldwater Scholarship and Excellence in Education Foundation", "Barry Goldwater Scholarship and Excellence in Education Program":
"Barry Goldwater Scholarship and Excellence in Education Foundation",
"Federal Reserve System": "Federal Reserve Board of Governors", "Federal Reserve System": "Federal Reserve Board of Governors",
"Harry S Truman Scholarship Foundation": "Harry S. Truman Scholarship Foundation", "Harry S Truman Scholarship Foundation": "Harry S. Truman Scholarship Foundation",
"Japan-US Friendship Commission": "Japan-U.S. Friendship Commission", "Japan-US Friendship Commission": "Japan-U.S. Friendship Commission",
@ -66,7 +66,8 @@ class Command(BaseCommand):
domain_info.updated_federal_agency = federal_agency_row domain_info.updated_federal_agency = federal_agency_row
domain_infos_to_update.append(domain_info) domain_infos_to_update.append(domain_info)
logger.info( logger.info(
f"DomainInformation {domain_info} updated_federal_agency set to: {domain_info.updated_federal_agency}" f"DomainInformation {domain_info} updated_federal_agency set to:"
f"{domain_info.updated_federal_agency}"
) )
except Exception as err: except Exception as err:
logger.info(f"DomainInformation for {domain_info} failed to update updated_federal_agency: {err}") logger.info(f"DomainInformation for {domain_info} failed to update updated_federal_agency: {err}")
@ -83,7 +84,8 @@ class Command(BaseCommand):
domain_request.updated_federal_agency = federal_agency_row domain_request.updated_federal_agency = federal_agency_row
domain_requests_to_update.append(domain_request) domain_requests_to_update.append(domain_request)
logger.info( logger.info(
f"DomainRequest {domain_request} updated_federal_agency set to: {domain_request.updated_federal_agency}" f"DomainRequest {domain_request} updated_federal_agency set to:"
f"{domain_request.updated_federal_agency}"
) )
except Exception as err: except Exception as err:
logger.info(f"DomainRequest for {domain_request} failed to update updated_federal_agency: {err}") logger.info(f"DomainRequest for {domain_request} failed to update updated_federal_agency: {err}")
@ -98,7 +100,8 @@ class Command(BaseCommand):
logger.info(f"{len(domain_requests_to_update)} DomainRequest rows updated update_federal_agency.") logger.info(f"{len(domain_requests_to_update)} DomainRequest rows updated update_federal_agency.")
logger.info(f"{len(domain_requests_skipped)} DomainRequest rows with null federal_agency skipped.") logger.info(f"{len(domain_requests_skipped)} DomainRequest rows with null federal_agency skipped.")
logger.info( logger.info(
f"{len(domain_requests_with_errors)} DomainRequest rows errored when updating update_federal_agency.\n{domain_requests_with_errors}" f"{len(domain_requests_with_errors)} DomainRequest rows errored when updating update_federal_agency."
f"{domain_requests_with_errors}"
) )
def find_federal_agency_row(self, domain_object): def find_federal_agency_row(self, domain_object):

View file

@ -26,7 +26,6 @@ from registrar.models import (
DomainInformation, DomainInformation,
PublicContact, PublicContact,
Domain, Domain,
FederalAgency,
) )
from epplibwrapper import ( from epplibwrapper import (
commands, commands,

View file

@ -14,7 +14,6 @@ from registrar.models import (
TransitionDomain, TransitionDomain,
DomainInformation, DomainInformation,
UserDomainRole, UserDomainRole,
FederalAgency,
) )
from registrar.models.public_contact import PublicContact from registrar.models.public_contact import PublicContact