code styling

This commit is contained in:
Oscar Krause 2025-03-21 11:21:26 +01:00
parent 8da5731bc5
commit cb80e709d6

View File

@ -182,8 +182,9 @@ def test_our_config_token():
nv_response_certificate_configuration = NV_CONFIG_TOKEN_RESPONSE.get('certificateConfiguration')
nv_response_public_cert = nv_response_certificate_configuration.get('publicCert').encode('utf-8')
nv_response_parsed_cert = x509.load_pem_x509_certificate(nv_response_public_cert)
jwt_decode_key = jwk.construct(nv_response_parsed_cert.public_bytes(encoding=Encoding.PEM),
algorithm=ALGORITHMS.RS256)
nv_response_parsed_cert_as_pem = nv_response_parsed_cert.public_bytes(encoding=Encoding.PEM)
jwt_decode_key = jwk.construct(nv_response_parsed_cert_as_pem, algorithm=ALGORITHMS.RS256)
### build payload