Skip to content

Commit 32fbd0e

Browse files
committed
Formatting fix
1 parent 6eaf3a0 commit 32fbd0e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

infra-cdk/lambdas/zip-packager/index.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ def send_response(
6060
headers={"Content-Type": "application/json"},
6161
method="PUT",
6262
)
63-
urllib.request.urlopen(req) # nosemgrep: python.lang.security.audit.dynamic-urllib-use-detected.dynamic-urllib-use-detected # nosec B310 B113 — URL is the CloudFormation pre-signed ResponseURL, not user-controlled
63+
urllib.request.urlopen( # nosemgrep: python.lang.security.audit.dynamic-urllib-use-detected.dynamic-urllib-use-detected # nosec B310 B113 — URL is the CloudFormation pre-signed ResponseURL, not user-controlled
64+
req
65+
)
6466

6567

6668
def download_wheels(requirements: list[str], download_dir: Path) -> None:

0 commit comments

Comments
 (0)