From d5cd639b854552f8fba3d5201764c4795aa03a25 Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Mon, 24 Jun 2024 13:21:42 -0600 Subject: [PATCH] Lint --- .../management/commands/email_current_metadata_report.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/registrar/management/commands/email_current_metadata_report.py b/src/registrar/management/commands/email_current_metadata_report.py index 773199198..905e4a57a 100644 --- a/src/registrar/management/commands/email_current_metadata_report.py +++ b/src/registrar/management/commands/email_current_metadata_report.py @@ -73,9 +73,7 @@ class Command(BaseCommand): # password = "devpwd" if override else settings.SECRET_ENCRYPT_METADATA password = settings.SECRET_ENCRYPT_METADATA if not password: - raise ValueError( - "No password was specified for this zip file." - ) + raise ValueError("No password was specified for this zip file.") encrypted_zip_in_bytes = self.get_encrypted_zip(zip_filename, reports, password)