Skip to content

Commit f1e6c91

Browse files
committed
pylint fix
1 parent 0f53225 commit f1e6c91

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

examples/test/legacy/v3_default_cmm.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ class V3DefaultCryptoMaterialsManager(CryptoMaterialsManager):
4040

4141
master_key_provider = attr.ib(validator=attr.validators.instance_of(MasterKeyProvider))
4242

43-
def _generate_signing_key_and_update_encryption_context(self, algorithm, encryption_context): # pylint: disable=no-self-use
43+
# pylint: disable=no-self-use
44+
def _generate_signing_key_and_update_encryption_context(self, algorithm, encryption_context):
4445
"""Generates a signing key based on the provided algorithm.
4546
4647
:param algorithm: Algorithm for which to generate signing key
@@ -111,7 +112,8 @@ def get_encryption_materials(self, request):
111112
signing_key=signing_key,
112113
)
113114

114-
def _load_verification_key_from_encryption_context(self, algorithm, encryption_context): # pylint: disable=no-self-use
115+
# pylint: disable=no-self-use
116+
def _load_verification_key_from_encryption_context(self, algorithm, encryption_context):
115117
"""Loads the verification key from the encryption context if used by algorithm suite.
116118
117119
:param algorithm: Algorithm for which to generate signing key

0 commit comments

Comments
 (0)