Linting pt 2

This commit is contained in:
zandercymatics 2024-04-26 08:28:50 -06:00
parent a7ef0cfa03
commit 0e92cd41db
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 3 additions and 3 deletions

View file

@ -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}"
)

View file

@ -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: