Skip to content

Commit

Permalink
remove trailing commas
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Whitehead <[email protected]>
  • Loading branch information
andrewwhitehead committed Oct 7, 2020
1 parent 99380c6 commit 9832f98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions aries_cloudagent/protocols/connections/v1_0/message_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
MESSAGE_TYPES = DIDCommPrefix.qualify_all(
{
CONNECTION_INVITATION: (
f"{PROTOCOL_PACKAGE}.messages.connection_invitation.ConnectionInvitation",
f"{PROTOCOL_PACKAGE}.messages.connection_invitation.ConnectionInvitation"
),
CONNECTION_REQUEST: (
f"{PROTOCOL_PACKAGE}.messages.connection_request.ConnectionRequest",
f"{PROTOCOL_PACKAGE}.messages.connection_request.ConnectionRequest"
),
CONNECTION_RESPONSE: (
f"{PROTOCOL_PACKAGE}.messages.connection_response.ConnectionResponse",
f"{PROTOCOL_PACKAGE}.messages.connection_response.ConnectionResponse"
),
PROBLEM_REPORT: f"{PROTOCOL_PACKAGE}.messages.problem_report.ProblemReport",
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
MESSAGE_TYPES = DIDCommPrefix.qualify_all(
{
INVITATION_REQUEST: (
f"{PROTOCOL_PACKAGE}.messages.invitation_request.InvitationRequest",
f"{PROTOCOL_PACKAGE}.messages.invitation_request.InvitationRequest"
),
INVITATION: f"{PROTOCOL_PACKAGE}.messages.invitation.Invitation",
FORWARD_INVITATION: (
Expand Down

0 comments on commit 9832f98

Please sign in to comment.