We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ada269 commit 6bff212Copy full SHA for 6bff212
runway/module/cdk.py
@@ -77,11 +77,6 @@ def parse_obj(cls, obj: object) -> CloudDevelopmentKitOptions:
77
class CloudDevelopmentKit(RunwayModuleNpm[CloudDevelopmentKitOptions]):
78
"""CDK Runway Module."""
79
80
- DEPRECATION_MSG = (
81
- "CDK Runway module support has been deprecated and "
82
- "may be removed in the next major release."
83
- )
84
-
85
def __init__(
86
self,
87
context: RunwayContext,
@@ -122,7 +117,6 @@ def __init__(
122
117
)
123
118
# logger needs to be created here to use the correct logger
124
119
self.logger = PrefixAdaptor(self.name, LOGGER)
125
- LOGGER.warning("%s:%s", self.name, self.DEPRECATION_MSG)
126
120
127
121
@cached_property
128
def cli_args(self) -> list[str]:
0 commit comments