From 6bff212618f8a8df8f4fc78850ff88b235d9b086 Mon Sep 17 00:00:00 2001 From: mbordash2 <43893544+mbordash2@users.noreply.github.com> Date: Wed, 4 Sep 2024 11:08:55 -0700 Subject: [PATCH] remove CDK deprecation message (#2544) --- runway/module/cdk.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/runway/module/cdk.py b/runway/module/cdk.py index 65c066e5b..fbf084315 100644 --- a/runway/module/cdk.py +++ b/runway/module/cdk.py @@ -77,11 +77,6 @@ def parse_obj(cls, obj: object) -> CloudDevelopmentKitOptions: class CloudDevelopmentKit(RunwayModuleNpm[CloudDevelopmentKitOptions]): """CDK Runway Module.""" - DEPRECATION_MSG = ( - "CDK Runway module support has been deprecated and " - "may be removed in the next major release." - ) - def __init__( self, context: RunwayContext, @@ -122,7 +117,6 @@ def __init__( ) # logger needs to be created here to use the correct logger self.logger = PrefixAdaptor(self.name, LOGGER) - LOGGER.warning("%s:%s", self.name, self.DEPRECATION_MSG) @cached_property def cli_args(self) -> list[str]: