From 3d2c76103a54273654293d53a6d5e2e2002977f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= Date: Wed, 6 Nov 2024 11:07:19 +0100 Subject: [PATCH] Format script with black --- scripts/check-glossary.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/check-glossary.py b/scripts/check-glossary.py index 0d19c0ee0cda1..7a0824769a214 100755 --- a/scripts/check-glossary.py +++ b/scripts/check-glossary.py @@ -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)