Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Ethan Sung <[email protected]>
  • Loading branch information
baegjae committed Nov 24, 2021
1 parent 407f82f commit 65acac8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions aries_cloudagent/indy/credx/holder.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,10 @@ async def get_credentials(self, start: int, count: int, wql: dict):

try:
rows = self._profile.store.scan(
CATEGORY_CREDENTIAL, wql, start, count,
CATEGORY_CREDENTIAL,
wql,
start,
count,
self._profile.settings.get("wallet.askar_profile"),
)
async for row in rows:
Expand Down Expand Up @@ -325,7 +328,10 @@ async def get_credentials_for_presentation_request_by_referent(
tag_filter = {"$and": [tag_filter, extra_query]}

rows = self._profile.store.scan(
CATEGORY_CREDENTIAL, tag_filter, start, count,
CATEGORY_CREDENTIAL,
tag_filter,
start,
count,
self._profile.settings.get("wallet.askar_profile"),
)
async for row in rows:
Expand Down

0 comments on commit 65acac8

Please sign in to comment.