From 0e92cd41dbfd1cbddf9900c74a835e7e003992e2 Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Fri, 26 Apr 2024 08:28:50 -0600 Subject: [PATCH] Linting pt 2 --- .../management/commands/populate_verification_type.py | 3 ++- src/registrar/management/commands/utility/terminal_helper.py | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) 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: