Skip to content

Commit

Permalink
style: fix line length after corrections
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Bluhm <[email protected]>
  • Loading branch information
dbluhm committed Aug 30, 2023
1 parent fcb2697 commit a76fb2d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions aries_cloudagent/storage/tests/test_askar_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ async def store():
# await profile.close()


# TODO: Ignore "Undefined name `indy`" errors; these tests should be revisited
# ruff: noqa: F821


@pytest.mark.askar
class TestAskarStorage(test_in_memory_storage.TestInMemoryStorage):
"""Tests for Askar storage."""
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudagent/wallet/askar.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ async def set_did_endpoint(
endorser_did: str = None,
routing_keys: List[str] = None,
):
"""Update the endpoint for a DID in the wallet, send to ledger if public or posted.
"""Update the endpoint for a DID in the wallet, send to ledger if posted.
Args:
did: DID for which to set endpoint
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudagent/wallet/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ async def set_did_endpoint(
endorser_did: str = None,
routing_keys: List[str] = None,
):
"""Update the endpoint for a DID in the wallet, send to ledger if public or posted.
"""Update the endpoint for a DID in the wallet, send to ledger if posted.
Args:
did: DID for which to set endpoint
Expand Down
2 changes: 1 addition & 1 deletion aries_cloudagent/wallet/indy.py
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ async def set_did_endpoint(
endorser_did: str = None,
routing_keys: List[str] = None,
):
"""Update the endpoint for a DID in the wallet, send to ledger if public or posted.
"""Update the endpoint for a DID in the wallet, send to ledger if posted.
Args:
did: DID for which to set endpoint
Expand Down

0 comments on commit a76fb2d

Please sign in to comment.