From 533d5181a71937380da5370d7100715bf0339bcd Mon Sep 17 00:00:00 2001 From: Andy Jewell Date: Fri, 31 Jan 2025 08:20:19 -0500 Subject: [PATCH] m --- .github/workflows/library_rust_tests.yml | 6 ------ .../aws_cryptography_materialproviders/models.py | 16 ++++++++-------- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/.github/workflows/library_rust_tests.yml b/.github/workflows/library_rust_tests.yml index 2bd8f4efe..cda8f063c 100644 --- a/.github/workflows/library_rust_tests.yml +++ b/.github/workflows/library_rust_tests.yml @@ -91,12 +91,6 @@ jobs: CORES=$(node -e 'console.log(os.cpus().length)') make transpile_rust TRANSPILE_TESTS_IN_RUST=1 CORES=$CORES - - name: Test Linter for Rust examples and implementation_from_dafny.rs - working-directory: ${{ matrix.library }}/runtimes/rust - shell: bash - run: | - cargo clippy - - name: Test ${{ matrix.library }} Rust shell: bash working-directory: ./${{ matrix.library }} diff --git a/AwsCryptographicMaterialProviders/runtimes/python/src/aws_cryptographic_material_providers/smithygenerated/aws_cryptography_materialproviders/models.py b/AwsCryptographicMaterialProviders/runtimes/python/src/aws_cryptographic_material_providers/smithygenerated/aws_cryptography_materialproviders/models.py index e6bd23c5a..17d6d3771 100644 --- a/AwsCryptographicMaterialProviders/runtimes/python/src/aws_cryptographic_material_providers/smithygenerated/aws_cryptography_materialproviders/models.py +++ b/AwsCryptographicMaterialProviders/runtimes/python/src/aws_cryptographic_material_providers/smithygenerated/aws_cryptography_materialproviders/models.py @@ -856,7 +856,7 @@ def __repr__(self) -> str: def _symmetric_signature_algorithm_from_dict( - d: Dict[str, Any] + d: Dict[str, Any], ) -> SymmetricSignatureAlgorithm: if "HMAC" in d: return SymmetricSignatureAlgorithmHMAC.from_dict(d) @@ -1504,7 +1504,7 @@ def as_dict(self) -> Dict[str, Any]: @staticmethod def from_dict( - d: Dict[str, Any] + d: Dict[str, Any], ) -> "KmsEcdhStaticConfigurationsKmsPublicKeyDiscovery": if len(d) != 1: raise TypeError(f"Unions may have exactly 1 value, but found {len(d)}") @@ -1535,7 +1535,7 @@ def as_dict(self) -> Dict[str, Any]: @staticmethod def from_dict( - d: Dict[str, Any] + d: Dict[str, Any], ) -> "KmsEcdhStaticConfigurationsKmsPrivateKeyToStaticPublicKey": if len(d) != 1: raise TypeError(f"Unions may have exactly 1 value, but found {len(d)}") @@ -1591,7 +1591,7 @@ def __repr__(self) -> str: def _kms_ecdh_static_configurations_from_dict( - d: Dict[str, Any] + d: Dict[str, Any], ) -> KmsEcdhStaticConfigurations: if "KmsPublicKeyDiscovery" in d: return KmsEcdhStaticConfigurationsKmsPublicKeyDiscovery.from_dict(d) @@ -3252,7 +3252,7 @@ def as_dict(self) -> Dict[str, Any]: @staticmethod def from_dict( - d: Dict[str, Any] + d: Dict[str, Any], ) -> "CreateDefaultCryptographicMaterialsManagerInput": """Creates a CreateDefaultCryptographicMaterialsManagerInput from a dictionary.""" @@ -3630,7 +3630,7 @@ def as_dict(self) -> Dict[str, Any]: @staticmethod def from_dict( - d: Dict[str, Any] + d: Dict[str, Any], ) -> "RawEcdhStaticConfigurationsRawPrivateKeyToStaticPublicKey": if len(d) != 1: raise TypeError(f"Unions may have exactly 1 value, but found {len(d)}") @@ -3664,7 +3664,7 @@ def as_dict(self) -> Dict[str, Any]: @staticmethod def from_dict( - d: Dict[str, Any] + d: Dict[str, Any], ) -> "RawEcdhStaticConfigurationsEphemeralPrivateKeyToStaticPublicKey": if len(d) != 1: raise TypeError(f"Unions may have exactly 1 value, but found {len(d)}") @@ -3721,7 +3721,7 @@ def __repr__(self) -> str: def _raw_ecdh_static_configurations_from_dict( - d: Dict[str, Any] + d: Dict[str, Any], ) -> RawEcdhStaticConfigurations: if "PublicKeyDiscovery" in d: return RawEcdhStaticConfigurationsPublicKeyDiscovery.from_dict(d)