Skip to content

Commit bac01de

Browse files
committed
fix: WIP remove broken import
Signed-off-by: Colton Wolkins (Laptop) <[email protected]>
1 parent da85fac commit bac01de

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

acapy_agent/protocols_v2/trustping/v1_0/message_types.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Message type identifiers for Trust Pings."""
22

3-
from ...didcomm_prefix import DIDCommPrefix
3+
#from ...didcomm_prefix import DIDCommPrefix
44

55
SPEC_URI = (
66
"https://github.com/hyperledger/aries-rfcs/tree/"
@@ -20,11 +20,8 @@ def test_func(context, responder, payload):
2020

2121
HANDLERS = {
2222
DEBUG: f"{PROTOCOL_PACKAGE}.message_types.test_func",
23-
}
23+
}.items()
2424

25-
MESSAGE_TYPES = DIDCommPrefix.qualify_all(
26-
{
27-
PING: f"{PROTOCOL_PACKAGE}.messages.ping.Ping",
28-
PING_RESPONSE: f"{PROTOCOL_PACKAGE}.messages.ping_response.PingResponse",
29-
}
30-
)
25+
MESSAGE_TYPES = {
26+
DEBUG: f"{PROTOCOL_PACKAGE}.message_types.test_func",
27+
}

0 commit comments

Comments
 (0)