From d0d40baff5c86a43fa05b8c180be8ff20728de4e Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Wed, 22 Nov 2023 14:04:38 -0700 Subject: [PATCH] Linting --- .../management/commands/generate_current_federal_report.py | 5 ----- .../management/commands/generate_current_full_report.py | 5 ----- src/registrar/tests/test_url_auth.py | 2 +- 3 files changed, 1 insertion(+), 11 deletions(-) diff --git a/src/registrar/management/commands/generate_current_federal_report.py b/src/registrar/management/commands/generate_current_federal_report.py index f07a35c65..83f76f1cc 100644 --- a/src/registrar/management/commands/generate_current_federal_report.py +++ b/src/registrar/management/commands/generate_current_federal_report.py @@ -1,13 +1,8 @@ """Generates current-full.csv and current-federal.csv then uploads them to the desired URL.""" -import glob import logging - import os -import shutil from django.core.management import BaseCommand - -from registrar.management.commands.utility.terminal_helper import TerminalHelper from registrar.utility import csv_export diff --git a/src/registrar/management/commands/generate_current_full_report.py b/src/registrar/management/commands/generate_current_full_report.py index 49f2127a8..92519cdc1 100644 --- a/src/registrar/management/commands/generate_current_full_report.py +++ b/src/registrar/management/commands/generate_current_full_report.py @@ -1,13 +1,8 @@ """Generates current-full.csv and current-federal.csv then uploads them to the desired URL.""" -import glob import logging - import os -import shutil from django.core.management import BaseCommand - -from registrar.management.commands.utility.terminal_helper import TerminalHelper from registrar.utility import csv_export diff --git a/src/registrar/tests/test_url_auth.py b/src/registrar/tests/test_url_auth.py index b1a8b8dc7..f131253f6 100644 --- a/src/registrar/tests/test_url_auth.py +++ b/src/registrar/tests/test_url_auth.py @@ -112,7 +112,7 @@ class TestURLAuth(TestCase): "/openid/callback/logout/", "/api/v1/available/whitehouse.gov", "/api/v1/get-report/current-federal", - "/api/v1/get-report/current-full" + "/api/v1/get-report/current-full", ] def assertURLIsProtectedByAuth(self, url):