Skip to content

Commit 754fb6b

Browse files
committed
verifybinaries: fix argument type error pointed out by mypy
1 parent 8a65e51 commit 754fb6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/verifybinaries/verify.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ def verify_binaries_handler(args: argparse.Namespace) -> ReturnCode:
580580
sums_sig_path = Path(args.sums_file).with_suffix(".asc")
581581

582582
# Verify the signature on the SHA256SUMS file
583-
sigs_status, good_trusted, good_untrusted, unknown, bad = verify_shasums_signature(sums_sig_path, args.sums_file, args)
583+
sigs_status, good_trusted, good_untrusted, unknown, bad = verify_shasums_signature(str(sums_sig_path), args.sums_file, args)
584584
if sigs_status != ReturnCode.SUCCESS:
585585
return sigs_status
586586

0 commit comments

Comments
 (0)