Skip to content

Commit 04bbe75

Browse files
committed
Run linter
1 parent 07e5614 commit 04bbe75

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

aries_cloudcontroller/controllers/issuer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ async def issue_credential(self, cred_ex_id, comment, attributes):
138138
async def store_credential(self, cred_ex_id, credential_id: str = None):
139139
body = {}
140140
if credential_id:
141-
body['credential_id'] = credential_id
141+
body["credential_id"] = credential_id
142142
return await self.admin_POST(
143143
f"{self.base_url}/records/{cred_ex_id}/store", json_data=body
144144
)

aries_cloudcontroller/controllers/messaging.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,7 @@ async def trust_ping(self, connection_id: str, comment_msg: str = None):
2727
f"/connections/{connection_id}/send-ping", {"comment": comment_msg}
2828
)
2929
else:
30-
response = await self.admin_POST(f"/connections/{connection_id}/send-ping", {})
30+
response = await self.admin_POST(
31+
f"/connections/{connection_id}/send-ping", {}
32+
)
3133
return response

0 commit comments

Comments
 (0)