Skip to content

Commit f79bd8c

Browse files
committed
fmt
1 parent 1994285 commit f79bd8c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

sigstore/models.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,9 @@ def _from_parts(
556556
if signed_timestamp is not None:
557557
timestamp_verifcation_data.rfc3161_timestamps.extend(
558558
[
559-
RFC3161SignedTimestamp(signed_timestamp=base64.b64encode(response.as_bytes()))
559+
RFC3161SignedTimestamp(
560+
signed_timestamp=base64.b64encode(response.as_bytes())
561+
)
560562
for response in signed_timestamp
561563
]
562564
)

sigstore/sign.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ def _finalize_sign(
188188

189189
# Submit the proposed entry to the transparency log
190190
entry = self._signing_ctx._rekor.create_entry(proposed_entry)
191-
_logger.debug(f"Transparency log entry created with index: {entry._inner.log_index}")
191+
_logger.debug(
192+
f"Transparency log entry created with index: {entry._inner.log_index}"
193+
)
192194

193195
return Bundle._from_parts(cert, content, entry, signed_timestamp)
194196

0 commit comments

Comments
 (0)