Skip to content

Commit 3ea85eb

Browse files
committed
fix: rename ambiguous variable l to ln (ruff E741)
1 parent 167f9ce commit 3ea85eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/dbx_python_cli/commands/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ def run_project(
10251025
elif not verbose and result.stderr:
10261026
# Show the last few non-blank lines so the real error isn't hidden
10271027
# behind a warning printed earlier in the same stderr stream.
1028-
lines = [l for l in result.stderr.strip().splitlines() if l.strip()]
1028+
lines = [ln for ln in result.stderr.strip().splitlines() if ln.strip()]
10291029
for line in lines[-3:]:
10301030
typer.echo(f" {line}", err=True)
10311031
raise typer.Exit(code=result.returncode)

0 commit comments

Comments
 (0)