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 6eaf3a0 commit 32fbd0eCopy full SHA for 32fbd0e
1 file changed
infra-cdk/lambdas/zip-packager/index.py
@@ -60,7 +60,9 @@ def send_response(
60
headers={"Content-Type": "application/json"},
61
method="PUT",
62
)
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
+ 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
+ )
66
67
68
def download_wheels(requirements: list[str], download_dir: Path) -> None:
0 commit comments