Skip to content

Commit

Permalink
Format script with black
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Nov 6, 2024
1 parent 1a32f1f commit 3d2c761
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/check-glossary.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@
print("result: differences found, see diff for details")
# diff itemsA and itemsB
diff = unified_diff(
itemsA.splitlines(keepends=True), itemsB.splitlines(keepends=True), fromfile="before", tofile="after"
itemsA.splitlines(keepends=True),
itemsB.splitlines(keepends=True),
fromfile="before",
tofile="after",
)
sys.stdout.writelines(diff)
sys.exit(1)

0 comments on commit 3d2c761

Please sign in to comment.