Skip to content

Commit

Permalink
chore: Update release policy, fix linter (#733)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmcdonald3 authored Nov 20, 2024
1 parent 242d974 commit 8a9d97b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions SUPPORT_POLICY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ This table describes the current support status of each major version of the AWS
-
-
* - 3.x
- General Availability
- Maintenance
- 2025-05-20
* - 4.x
- General Availability
-
-
Expand Down
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 8a9d97b

Please sign in to comment.