Skip to content

Commit 31c1cce

Browse files
committed
Fix typo
Signed-off-by: laurentsimon <laurentsimon@google.com>
1 parent 54d0fe0 commit 31c1cce

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
@@ -686,7 +686,7 @@ def _sign(args: argparse.Namespace) -> None:
686686
with signing_ctx.signer(identity) as signer:
687687
for file, outputs in output_map.items():
688688
logger.debug(f"signing for {file.name}")
689-
with file.open(mode="rb", buffering=0) as fio:
689+
with file.open(mode="rb", buffering=0) as io:
690690
try:
691691
result = signer.sign(input_=io)
692692
except ExpiredIdentity as exp_identity:

0 commit comments

Comments
 (0)