Skip to content

Commit

Permalink
transparency: use Optional[...]
Browse files Browse the repository at this point in the history
Signed-off-by: William Woodruff <[email protected]>
  • Loading branch information
woodruffw committed Jul 12, 2023
1 parent 11f90b5 commit 107ac71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sigstore/transparency.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ class LogEntry:
The index of this entry within the log.
"""

inclusion_proof: LogInclusionProof | None
inclusion_proof: Optional[LogInclusionProof]
"""
An inclusion proof for this log entry, if present.
"""

inclusion_promise: B64Str | None
inclusion_promise: Optional[B64Str]
"""
An inclusion promise for this log entry, if present.
Expand Down

0 comments on commit 107ac71

Please sign in to comment.