Linting fix

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

View file

@ -307,7 +307,8 @@ class ViewsTest(TestCase):
@less_console_noise_decorator
def test_login_callback_sets_verification_type_grandfathered(self, mock_client):
"""Test that openid sets the verification type to grandfathered on a user which exists in our TransitionDomain table"""
"""Test that openid sets the verification type to grandfathered
on a user which exists in our TransitionDomain table"""
# SETUP
session = self.client.session
session.save()

View file

@ -1,5 +1,4 @@
import logging
from typing import List
from django.core.management import BaseCommand
from registrar.management.commands.utility.terminal_helper import PopulateScriptTemplate, TerminalColors
from registrar.models import User

View file

@ -105,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 # noqa
raise NotImplementedError
class TerminalHelper: