diff --git a/src/registrar/management/commands/populate_verification_type.py b/src/registrar/management/commands/populate_verification_type.py index a20c3e809..802116fbc 100644 --- a/src/registrar/management/commands/populate_verification_type.py +++ b/src/registrar/management/commands/populate_verification_type.py @@ -19,5 +19,6 @@ class Command(BaseCommand, PopulateScriptTemplate): """Defines how we update the verification_type field""" field_to_update.set_user_verification_type() logger.info( - f"{TerminalColors.OKCYAN}Updating {field_to_update} => {field_to_update.verification_type}{TerminalColors.OKCYAN}" + f"{TerminalColors.OKCYAN}Updating {field_to_update} => " + f"{field_to_update.verification_type}{TerminalColors.OKCYAN}" ) diff --git a/src/registrar/management/commands/utility/terminal_helper.py b/src/registrar/management/commands/utility/terminal_helper.py index 2376439a6..255d576db 100644 --- a/src/registrar/management/commands/utility/terminal_helper.py +++ b/src/registrar/management/commands/utility/terminal_helper.py @@ -3,7 +3,6 @@ import sys from abc import ABC, abstractmethod from django.core.paginator import Paginator from typing import List -from django.core.management import BaseCommand from registrar.utility.enums import LogCode logger = logging.getLogger(__name__) @@ -106,7 +105,7 @@ class PopulateScriptTemplate(ABC): @abstractmethod def populate_field(self, field_to_update): """Defines how we update each field. Must be defined before using mass_populate_field.""" - pass + pass # noqa class TerminalHelper: