Skip to content

Commit 84eb4b5

Browse files
committed
chore: remove badly escaped strings
1 parent 1c7b4fe commit 84eb4b5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/e2e/utils/lambda_layer/powertools_layer.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ def __init__(self, output_dir: Path = CDK_OUT_PATH):
2222
self.cleanup_command = (
2323
f"rm -rf {self.target_dir}/boto* {self.target_dir}/s3transfer* && "
2424
f"rm -rf {self.target_dir}/*dateutil* {self.target_dir}/urllib3* {self.target_dir}/six* && "
25-
f"find {self.target_dir} -name '*.so' -type f -exec strip '{{}}' \; && " # noqa: W605
26-
f"find {self.target_dir} -wholename '*/tests/*' -type f -delete && " # noqa: W605
27-
f"find {self.target_dir} -regex '^.*\(__pycache__\|\.py[co]\)$' -delete" # noqa: W605
25+
f"find {self.target_dir} -name '*.so' -type f -exec strip '{{}}' \\; && "
26+
f"find {self.target_dir} -wholename '*/tests/*' -type f -delete && "
27+
f"find {self.target_dir} -regex '^.*\\(__pycache__\\|\\.py[co]\\)$' -delete"
2828
)
2929
self.source_diff_file: Path = CDK_OUT_PATH / "layer_build.diff"
3030

0 commit comments

Comments
 (0)