Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmcdonald3 committed Nov 15, 2024
1 parent aa88f9b commit 884051b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class HalfSigningCryptoMaterialsManagerFromMPL(CryptoMaterialsManagerFromMPL):

wrapped_default_cmm = attr.ib(validator=attr.validators.instance_of(CryptoMaterialsManagerFromMPL))

def __init__(self, master_key_provider):
def __init__(self, master_key_provider): # pylint: disable=super-init-not-called
"""Create a new CMM that wraps a the given CMM."""
mpl = AwsCryptographicMaterialProviders(MaterialProvidersConfig())
mpl_cmm = mpl.create_default_cryptographic_materials_manager(
Expand Down Expand Up @@ -89,7 +89,7 @@ class HalfSigningEncryptionMaterialsFromMPL(EncryptionMaterialsFromMPL):

_underlying_materials: EncryptionMaterialsFromMPL

def __init__(self, underlying_materials):
def __init__(self, underlying_materials): # pylint: disable=super-init-not-called
"""Create a HalfSigningEncryptionMaterialsFromMPL wrapper
around underlying_materials.
"""
Expand Down Expand Up @@ -159,7 +159,7 @@ class ProviderInfoChangingCryptoMaterialsManagerFromMPL(CryptoMaterialsManagerFr
wrapped_cmm = attr.ib(validator=attr.validators.instance_of(CryptoMaterialsManager))
new_provider_info = attr.ib(validator=attr.validators.instance_of(six.string_types))

def __init__(self, materials_manager, new_provider_info):
def __init__(self, materials_manager, new_provider_info): # pylint: disable=super-init-not-called
"""Create a new CMM that wraps a the given CMM."""
self.wrapped_cmm = materials_manager
self.new_provider_info = new_provider_info
Expand Down

0 comments on commit 884051b

Please sign in to comment.