Skip to content

Commit 59bbb24

Browse files
committed
trust: Improve docstrings
Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
1 parent 2543a7d commit 59bbb24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sigstore/_internal/trust.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -405,13 +405,13 @@ def _get_valid_services(
405405

406406
def get_tlogs(self) -> list[RekorClient]:
407407
"""
408-
Returns the rekor transparency logs that client should sign with.
408+
Returns the rekor transparency log clients that client should sign with.
409409
"""
410410
return [RekorClient(tlog.url) for tlog in self._tlogs]
411411

412412
def get_fulcio(self) -> FulcioClient:
413413
"""
414-
Returns url for the fulcio instance that client should use to get a
414+
Returns a Fulcio instance that client should use to get a
415415
signing certificate from
416416
"""
417417
return FulcioClient(self._fulcios[0].url)
@@ -427,7 +427,7 @@ def get_oidc_url(self) -> str:
427427

428428
def get_tsas(self) -> list[TimestampAuthorityClient]:
429429
"""
430-
Returns timestamp authority API end points.
430+
Returns timestamp authority clients for urls configured in signing config.
431431
"""
432432
return [TimestampAuthorityClient(s.url) for s in self._tsas]
433433

0 commit comments

Comments
 (0)