We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 167f9ce commit 3ea85ebCopy full SHA for 3ea85eb
1 file changed
src/dbx_python_cli/commands/project.py
@@ -1025,7 +1025,7 @@ def run_project(
1025
elif not verbose and result.stderr:
1026
# Show the last few non-blank lines so the real error isn't hidden
1027
# behind a warning printed earlier in the same stderr stream.
1028
- lines = [l for l in result.stderr.strip().splitlines() if l.strip()]
+ lines = [ln for ln in result.stderr.strip().splitlines() if ln.strip()]
1029
for line in lines[-3:]:
1030
typer.echo(f" {line}", err=True)
1031
raise typer.Exit(code=result.returncode)
0 commit comments