Skip to content

Commit 0021c87

Browse files
committed
add line breaks for codegen
1 parent f879739 commit 0021c87

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/rpdk/typescript/codegen.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
SUPPORT_LIB_VERSION = "0.1.1"
2121
MAIN_HANDLER_FUNCTION = "TypeFunction"
2222
REPO_URL = "https://github.com/eduardomourar/cloudformation-cli-typescript-plugin"
23+
REPO_RELEASE_SUFFIX = f"v{SUPPORT_LIB_VERSION}/cfn-rpdk-{SUPPORT_LIB_VERSION}.tgz"
2324

2425

2526
def validate_no(value):
@@ -33,7 +34,7 @@ class TypescriptLanguagePlugin(LanguagePlugin):
3334
ENTRY_POINT = "dist/handlers.entrypoint"
3435
TEST_ENTRY_POINT = "dist/handlers.testEntrypoint"
3536
CODE_URI = "./"
36-
SUPPORT_LIB_URI = f"{REPO_URL}/releases/download/v{SUPPORT_LIB_VERSION}/cfn-rpdk-{SUPPORT_LIB_VERSION}.tgz"
37+
SUPPORT_LIB_URI = f"{REPO_URL}/releases/download/{REPO_RELEASE_SUFFIX}"
3738

3839
def __init__(self):
3940
self.env = self._setup_jinja_env(

0 commit comments

Comments
 (0)