Skip to content

Commit ae4a7bd

Browse files
committed
Lint
1 parent 7244fc7 commit ae4a7bd

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/dbx_python_cli/commands/spec.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def _show_patch_summary(driver_repo, verbose: bool = False) -> int:
8787
typer.echo(f" {f}")
8888
else:
8989
typer.echo(f" • {ticket} ({len(files)} file(s))")
90-
typer.echo(f"\n Run 'dbx spec patch apply' to apply them.")
90+
typer.echo("\n Run 'dbx spec patch apply' to apply them.")
9191
return len(patches)
9292

9393

@@ -440,7 +440,7 @@ def patch_create(
440440
if verbose:
441441
for f in files_affected:
442442
typer.echo(f" {f}")
443-
typer.echo(f"\n Run 'dbx spec patch apply' to apply it now.")
443+
typer.echo("\n Run 'dbx spec patch apply' to apply it now.")
444444

445445

446446
# ---------------------------------------------------------------------------

tests/test_spec_command.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Tests for the spec command."""
22

3-
from pathlib import Path
43
from unittest.mock import patch
54

65
import pytest

0 commit comments

Comments
 (0)