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)