mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-15 17:17:02 +02:00
Linting fix
This commit is contained in:
parent
0e92cd41db
commit
914cab8fc8
3 changed files with 3 additions and 3 deletions
|
@ -307,7 +307,8 @@ class ViewsTest(TestCase):
|
||||||
|
|
||||||
@less_console_noise_decorator
|
@less_console_noise_decorator
|
||||||
def test_login_callback_sets_verification_type_grandfathered(self, mock_client):
|
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
|
# SETUP
|
||||||
session = self.client.session
|
session = self.client.session
|
||||||
session.save()
|
session.save()
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import logging
|
import logging
|
||||||
from typing import List
|
|
||||||
from django.core.management import BaseCommand
|
from django.core.management import BaseCommand
|
||||||
from registrar.management.commands.utility.terminal_helper import PopulateScriptTemplate, TerminalColors
|
from registrar.management.commands.utility.terminal_helper import PopulateScriptTemplate, TerminalColors
|
||||||
from registrar.models import User
|
from registrar.models import User
|
||||||
|
|
|
@ -105,7 +105,7 @@ class PopulateScriptTemplate(ABC):
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def populate_field(self, field_to_update):
|
def populate_field(self, field_to_update):
|
||||||
"""Defines how we update each field. Must be defined before using mass_populate_field."""
|
"""Defines how we update each field. Must be defined before using mass_populate_field."""
|
||||||
pass # noqa
|
raise NotImplementedError
|
||||||
|
|
||||||
|
|
||||||
class TerminalHelper:
|
class TerminalHelper:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue