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 87edc50 commit 162ca2cCopy full SHA for 162ca2c
.gitlab/scripts/gen_hw_jobs.py
@@ -177,7 +177,9 @@ def parse_list_arg(s: str) -> list[str]:
177
fixed = txt.replace("'", '"')
178
return [str(x).strip() for x in json.loads(fixed)]
179
except Exception as e2:
180
- sys.stderr.write(f"[WARN] Failed to parse JSON list after normalization: {e2}. Falling back to CSV parsing.\n")
+ sys.stderr.write(
181
+ f"[WARN] Failed to parse JSON list after normalization: {e2}. Falling back to CSV parsing.\n"
182
+ )
183
# Fallback: comma-separated
184
return [part.strip() for part in txt.split(",") if part.strip()]
185
0 commit comments