Skip to content

Commit 52aa711

Browse files
Fix import paths in patched present-proof protocol
Signed-off-by: George J Padayatti <[email protected]>
1 parent 0dc5408 commit 52aa711

31 files changed

+48
-6263
lines changed

mydata_did/patched_protocols/present_proof/v1_0/handlers/presentation_ack_handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Presentation ack message handler."""
22

3-
from .....messaging.base_handler import (
3+
from aries_cloudagent.messaging.base_handler import (
44
BaseHandler,
55
BaseResponder,
66
HandlerException,
@@ -10,7 +10,7 @@
1010
from ..manager import PresentationManager
1111
from ..messages.presentation_ack import PresentationAck
1212

13-
from .....utils.tracing import trace_event, get_timer
13+
from aries_cloudagent.utils.tracing import trace_event, get_timer
1414

1515

1616
class PresentationAckHandler(BaseHandler):

mydata_did/patched_protocols/present_proof/v1_0/handlers/presentation_handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Presentation message handler."""
22

3-
from .....messaging.base_handler import (
3+
from aries_cloudagent.messaging.base_handler import (
44
BaseHandler,
55
BaseResponder,
66
RequestContext,
@@ -9,7 +9,7 @@
99
from ..manager import PresentationManager
1010
from ..messages.presentation import Presentation
1111

12-
from .....utils.tracing import trace_event, get_timer
12+
from aries_cloudagent.utils.tracing import trace_event, get_timer
1313

1414

1515
class PresentationHandler(BaseHandler):

mydata_did/patched_protocols/present_proof/v1_0/handlers/presentation_proposal_handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Presentation proposal message handler."""
22

3-
from .....messaging.base_handler import (
3+
from aries_cloudagent.messaging.base_handler import (
44
BaseHandler,
55
BaseResponder,
66
HandlerException,
@@ -10,7 +10,7 @@
1010
from ..manager import PresentationManager
1111
from ..messages.presentation_proposal import PresentationProposal
1212

13-
from .....utils.tracing import trace_event, get_timer
13+
from aries_cloudagent.utils.tracing import trace_event, get_timer
1414

1515

1616
class PresentationProposalHandler(BaseHandler):

mydata_did/patched_protocols/present_proof/v1_0/handlers/presentation_request_handler.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
HandlerException,
77
RequestContext,
88
)
9-
from .....holder.base import BaseHolder
10-
from .....storage.error import StorageNotFoundError
9+
from aries_cloudagent.holder.base import BaseHolder
10+
from aries_cloudagent.storage.error import StorageNotFoundError
1111

1212
from ..manager import PresentationManager
1313
from ..messages.presentation_proposal import PresentationProposal
1414
from ..messages.presentation_request import PresentationRequest
1515
from ..models.presentation_exchange import V10PresentationExchange
1616
from ..util.indy import indy_proof_req_preview2indy_requested_creds
1717

18-
from .....utils.tracing import trace_event, get_timer
18+
from aries_cloudagent.utils.tracing import trace_event, get_timer
1919

2020

2121
class PresentationRequestHandler(BaseHandler):

mydata_did/patched_protocols/present_proof/v1_0/handlers/tests/__init__.py

Whitespace-only changes.

mydata_did/patched_protocols/present_proof/v1_0/handlers/tests/test_presentation_ack_handler.py

Lines changed: 0 additions & 53 deletions
This file was deleted.

mydata_did/patched_protocols/present_proof/v1_0/handlers/tests/test_presentation_handler.py

Lines changed: 0 additions & 53 deletions
This file was deleted.

mydata_did/patched_protocols/present_proof/v1_0/handlers/tests/test_presentation_proposal_handler.py

Lines changed: 0 additions & 90 deletions
This file was deleted.

0 commit comments

Comments
 (0)