Skip to content

Commit 304caa7

Browse files
Nova (SFK)claude
andcommitted
chore(noxfile): apply ruff format to pylint examples extension
Pre-commit's ruff-format wanted the new git-ls-files call on a single line; revert the line break. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 83c963d commit 304caa7

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

py/noxfile.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -538,9 +538,7 @@ def pylint(session):
538538
files = [path for path in result.strip().splitlines() if path not in GENERATED_LINT_EXCLUDES]
539539
# Also lint repo-root examples/ — they live outside py/ but rely on the
540540
# same `lint` dependency-group, so we cover them in the same invocation.
541-
examples_result = session.run(
542-
"git", "-C", "../examples", "ls-files", "**/*.py", silent=True, log=False
543-
)
541+
examples_result = session.run("git", "-C", "../examples", "ls-files", "**/*.py", silent=True, log=False)
544542
files += [f"../examples/{path}" for path in examples_result.strip().splitlines() if path]
545543
if not files:
546544
return

0 commit comments

Comments
 (0)