Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
Small "typo" in the code
  • Loading branch information
laurentsimon authored Oct 26, 2023
1 parent 1f678d0 commit 14b80a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions model_signing/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ def sign(self, inputfn: Path, signaturefn: Path,
# Print identity used to sign the model.
oidc_identity = Identity(token)
print(f"identity-provider: {oidc_identity.issuer}",
file=sys. stderr)
print(f"identity: {oidc_identity.proof}", file=sys. stderr)
file=sys.stderr)
print(f"identity: {oidc_identity.proof}", file=sys.stderr)

contentio = io.BytesIO(Serializer.serialize_v1(
inputfn, chunk_size(), signaturefn, ignorepaths))
Expand Down

0 comments on commit 14b80a4

Please sign in to comment.