Skip to content

Commit 1228d2f

Browse files
committed
Chores
1 parent 0948801 commit 1228d2f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

paracelsus/cli.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -312,16 +312,16 @@ def inject(
312312
diff = unified_diff(
313313
old_content.splitlines(keepends=True),
314314
new_content.splitlines(keepends=True),
315-
fromfile='old',
316-
tofile='new',
317-
lineterm=''
315+
fromfile="old",
316+
tofile="new",
317+
lineterm="",
318318
)
319-
319+
320320
typer.echo("Changes detected. Diff:")
321321
typer.echo("")
322322
for line in diff:
323323
typer.echo(line.rstrip())
324-
324+
325325
sys.exit(1)
326326
else:
327327
# Dump newly generated contents back to file.

0 commit comments

Comments
 (0)