We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7504b0 commit 3086db4Copy full SHA for 3086db4
leverage/modules/project.py
@@ -136,15 +136,15 @@ def _copy_account(account, primary_region):
136
src=TEMPLATE_DIR / account / "global" / layer,
137
dst=PROJECT_ROOT / account / "global" / layer,
138
ignore=IGNORE_PATTERNS,
139
- symlinks=True
+ symlinks=True,
140
)
141
# Copy all layers with a region in account
142
for layer in PROJECT_STRUCTURE[account]["primary_region"]:
143
copytree(
144
src=TEMPLATE_DIR / account / "primary_region" / layer,
145
dst=PROJECT_ROOT / account / primary_region / layer,
146
147
148
149
150
0 commit comments