From 689642237c9a95196419059c2fdf1e83b96e6315 Mon Sep 17 00:00:00 2001 From: Paula Camargo Date: Thu, 21 Sep 2023 10:08:15 -0700 Subject: [PATCH] Fix default value --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 6633678b..dbc01a75 100644 --- a/noxfile.py +++ b/noxfile.py @@ -136,7 +136,7 @@ def install_bundled_libs(session): session.install("wheel") _install_bundle(session) - target = os.environ.get("VSCETARGET") + target = os.environ.get("VSCETARGET", "") print("target:", target) if "linux" in target: download_url(f"{os.getcwd()}/bundled/libs", debugpy_urls["Linux"])