Skip to content

Commit 8a9d97b

Browse files
chore: Update release policy, fix linter (#733)
1 parent 242d974 commit 8a9d97b

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

SUPPORT_POLICY.rst

+4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ This table describes the current support status of each major version of the AWS
3030
-
3131
-
3232
* - 3.x
33+
- General Availability
34+
- Maintenance
35+
- 2025-05-20
36+
* - 4.x
3337
- General Availability
3438
-
3539
-

test_vector_handlers/src/awses_test_vectors/internal/mpl/tampering_mpl_materials.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class HalfSigningCryptoMaterialsManagerFromMPL(CryptoMaterialsManagerFromMPL):
4040

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

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

9090
_underlying_materials: EncryptionMaterialsFromMPL
9191

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

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

0 commit comments

Comments
 (0)