Skip to content

Commit fbbec2e

Browse files
committed
re-format
1 parent d566b12 commit fbbec2e

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

noxfile.py

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,12 @@ def _parse_wheel_info(url: str) -> dict:
9898
# Fallback for py2.py3-none-any wheels
9999
match = re.match(r"debugpy-([^-]+)-py\d\.py\d-none-any\.whl", filename)
100100
if match:
101-
return {"version": match.group(1), "py_ver": None, "abi": "none", "platform": "any"}
101+
return {
102+
"version": match.group(1),
103+
"py_ver": None,
104+
"abi": "none",
105+
"platform": "any",
106+
}
102107
raise ValueError(f"Could not parse wheel filename: {filename}")
103108

104109

@@ -120,11 +125,16 @@ def download_debugpy_via_pip(session: nox.Session, wheels: list) -> None:
120125

121126
for info in parsed:
122127
args = [
123-
"python", "-m", "pip", "download",
128+
"python",
129+
"-m",
130+
"pip",
131+
"download",
124132
f"debugpy=={version}",
125133
"--no-deps",
126-
"--only-binary", ":all:",
127-
"--dest", str(tmp_path),
134+
"--only-binary",
135+
":all:",
136+
"--dest",
137+
str(tmp_path),
128138
]
129139
if info["py_ver"]:
130140
# Platform-specific wheel

0 commit comments

Comments
 (0)