Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Sablotny <msablotny@nvidia.com>
  • Loading branch information
susperius committed Aug 6, 2024
1 parent bdb5ac7 commit c4e5f91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sign_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def _get_payload_signer(args: argparse.Namespace) -> signing.Signer:
return fake.FakeSigner()
else:
log.error(f'unsupported signing method {args.method}')
log.error(('supported methods: ["sigstore",',
log.error(('supported methods: ["sigstore",',
'"pki", "private-key", "skip"]'))
exit()

Expand Down
2 changes: 1 addition & 1 deletion verify_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def main():
verifier = fake.FakeVerifier()
else:
log.error(f'unsupported verification method {args.method}')
log.error(('supported methods: ["sigstore",',
log.error(('supported methods: ["sigstore",',
'"pki", "private-key", "skip"]'))
exit()

Expand Down

0 comments on commit c4e5f91

Please sign in to comment.