Skip to content

Commit 6431ff4

Browse files
author
Taniya Mathur
committed
addressing format error
1 parent 3440064 commit 6431ff4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

publish.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -691,11 +691,11 @@ def clean_and_build(self, template_path):
691691
os.path.basename(template_path),
692692
"--cached",
693693
]
694-
694+
695695
# Only add --parallel if no idp_common dependencies to prevent race conditions
696696
if not has_idp_common_deps:
697697
cmd.append("--parallel")
698-
698+
699699
if self.use_container_flag and self.use_container_flag.strip():
700700
cmd.append(self.use_container_flag)
701701

@@ -712,14 +712,14 @@ def clean_and_build(self, template_path):
712712
def _check_template_for_idp_common_deps(self, template_path):
713713
"""Check if a template has Lambda functions with idp_common dependencies."""
714714
template_dir = Path(template_path).parent
715-
715+
716716
# For main template, check src/lambda directory
717717
if template_path == "template.yaml":
718718
src_dir = Path("src/lambda")
719719
else:
720720
# For pattern/option templates, check src directory
721721
src_dir = template_dir / "src"
722-
722+
723723
if src_dir.exists():
724724
for func_dir in src_dir.iterdir():
725725
if func_dir.is_dir():

0 commit comments

Comments
 (0)