Skip to content

Commit

Permalink
🎨 Update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ff137 committed Jan 31, 2025
1 parent ce61992 commit c34716c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion app/services/verifier/acapy_verifier_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
)
from app.services.verifier.acapy_verifier import Verifier
from shared.log_config import get_logger
from shared.models.presentation_exchange import PresentationExchange
from shared.models.presentation_exchange import (
PresentationExchange,
)
from shared.models.presentation_exchange import (
presentation_record_to_model as record_to_model,
)
Expand Down
2 changes: 1 addition & 1 deletion app/tests/services/event_handling/test_sse.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async def _lines():
# Fixture for the mock response
@pytest.fixture
def response_mock(
async_lines: AsyncGenerator[str, Any] # pylint: disable=redefined-outer-name
async_lines: AsyncGenerator[str, Any], # pylint: disable=redefined-outer-name
) -> AsyncMock:
response = AsyncMock(spec=Response)
response.aiter_lines.return_value = async_lines()
Expand Down
4 changes: 3 additions & 1 deletion app/tests/services/verifier/test_acapy_verifier_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
v20_presentation_exchange_records,
)
from app.tests.util.mock import to_async
from shared.models.presentation_exchange import PresentationExchange
from shared.models.presentation_exchange import (
PresentationExchange,
)
from shared.models.presentation_exchange import (
presentation_record_to_model as record_to_model,
)
Expand Down

0 comments on commit c34716c

Please sign in to comment.