Add flake8-implicit-str-concat rules to Ruff (#33191)

Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
This commit is contained in:
Harry Mellor
2026-01-28 04:56:10 +00:00
committed by GitHub
parent a97b5e206d
commit 2eb673a088
16 changed files with 34 additions and 33 deletions

View File

@@ -1302,7 +1302,7 @@ def prep_prompts(batch_size: int, ln_range: tuple[int, int] = (800, 1100)):
indices.append(idx)
prompt = (
"```python\n# We set a number of variables, "
+ f"x{idx} will be important later\n"
f"x{idx} will be important later\n"
)
ln = random.randint(*ln_range)
for k in range(30, ln):