From 8a9d97bb79076ed648ff4337b43dee1bd2ed807b Mon Sep 17 00:00:00 2001 From: Lucas McDonald Date: Wed, 20 Nov 2024 12:59:49 -0800 Subject: [PATCH] chore: Update release policy, fix linter (#733) --- SUPPORT_POLICY.rst | 4 ++++ .../internal/mpl/tampering_mpl_materials.py | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/SUPPORT_POLICY.rst b/SUPPORT_POLICY.rst index 76cd580d4..1e20c300f 100644 --- a/SUPPORT_POLICY.rst +++ b/SUPPORT_POLICY.rst @@ -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 - - diff --git a/test_vector_handlers/src/awses_test_vectors/internal/mpl/tampering_mpl_materials.py b/test_vector_handlers/src/awses_test_vectors/internal/mpl/tampering_mpl_materials.py index 00a0eb252..4caf85635 100644 --- a/test_vector_handlers/src/awses_test_vectors/internal/mpl/tampering_mpl_materials.py +++ b/test_vector_handlers/src/awses_test_vectors/internal/mpl/tampering_mpl_materials.py @@ -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( @@ -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. """ @@ -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