From f99a06c85452e916660c9724ac60483d7cc93634 Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Mon, 8 Jan 2024 13:15:23 -0700 Subject: [PATCH] Linter things --- src/registrar/management/commands/populate_first_ready.py | 1 - src/registrar/management/commands/utility/terminal_helper.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/registrar/management/commands/populate_first_ready.py b/src/registrar/management/commands/populate_first_ready.py index e85dd01bc..c4ddcb043 100644 --- a/src/registrar/management/commands/populate_first_ready.py +++ b/src/registrar/management/commands/populate_first_ready.py @@ -1,6 +1,5 @@ import argparse import logging -from django.core.paginator import Paginator from typing import List from django.core.management import BaseCommand from registrar.management.commands.utility.terminal_helper import TerminalColors, TerminalHelper, ScriptDataHelper diff --git a/src/registrar/management/commands/utility/terminal_helper.py b/src/registrar/management/commands/utility/terminal_helper.py index 7155997ce..cb2152959 100644 --- a/src/registrar/management/commands/utility/terminal_helper.py +++ b/src/registrar/management/commands/utility/terminal_helper.py @@ -4,8 +4,6 @@ import sys from django.core.paginator import Paginator from typing import List -from registrar import models - logger = logging.getLogger(__name__)