precommit w/ burnettk cullerton jbirddog

This commit is contained in:
jasquat 2022-09-14 17:01:02 -04:00
parent 8f45f3d586
commit 5acf06046d
3 changed files with 2 additions and 3 deletions

View File

@ -28,7 +28,7 @@ class SecretService:
raise ApiError(
code="create_secret_error",
message=f"There was an error creating a secret with key: {key} and value ending with: {value[:-4]}. "
f"Original error is {e}",
f"Original error is {e}",
) from e
return secret_model

View File

@ -100,7 +100,7 @@ class TestProcessApi(BaseTest):
data=data,
follow_redirects=True,
content_type="multipart/form-data",
headers=logged_in_headers(user),
headers=self.logged_in_headers(user),
)
assert response.status_code == 200
process_model = ProcessModelService().get_process_model(

View File

@ -1,5 +1,4 @@
"""Test_secret_service."""
from flask.app import Flask
from flask.testing import FlaskClient
from tests.spiffworkflow_backend.helpers.base_test import BaseTest