Skip to content

Commit 027087e

Browse files
committed
Fix typo
Signed-off-by: laurentsimon <laurentsimon@google.com>
1 parent 479bbad commit 027087e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sigstore/_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ def _sign(args: argparse.Namespace) -> None:
688688
logger.debug(f"signing for {file.name}")
689689
with file.open(mode="rb", buffering=0) as io:
690690
try:
691-
result = signer.sign(input_=iof)
691+
result = signer.sign(input_=io)
692692
except ExpiredIdentity as exp_identity:
693693
print("Signature failed: identity token has expired")
694694
raise exp_identity

0 commit comments

Comments
 (0)