Skip to content

Commit

Permalink
Fix example
Browse files Browse the repository at this point in the history
Signed-off-by: jamshale <[email protected]>
  • Loading branch information
jamshale committed Jan 23, 2025
1 parent 41b90db commit 3fb3bc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion acapy_agent/config/wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async def _attempt_open_profile(


def _log_provision_info(profile: Profile) -> None:
print(f'{"Created new profile" if profile.created else "Opened existing profile"}')
print(f"{'Created new profile' if profile.created else 'Opened existing profile'}")
print(f"Profile name: {profile.name} Profile backend: {profile.backend}")


Expand Down
2 changes: 1 addition & 1 deletion acapy_agent/messaging/valid.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def __init__(self):
class IndyDID(Regexp):
"""Validate value against indy DID."""

EXAMPLE = "did:sov:WgWxqztrNooG92RXvxSTWv"
EXAMPLE = "did:indy:sovrin:WRfXPg8dantKVubE3HX8pw"
PATTERN = re.compile(rf"^(did:(sov|indy):)?[{B58}]{{21,22}}$")

def __init__(self):
Expand Down

0 comments on commit 3fb3bc6

Please sign in to comment.