From 550604861401b53984c70eed0961ddede83a4597 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Thu, 25 Jun 2026 16:38:06 +0200 Subject: [PATCH] python-tools.sh: Fix missing newline after imports Commit 4e347683 removed a tralining newline after imports. Yapf doesn't like that, so revert that change. Signed-off-by: Jan Lindemann --- scripts/python-tools.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/python-tools.sh b/scripts/python-tools.sh index 7eeb380b..aa83d8f5 100644 --- a/scripts/python-tools.sh +++ b/scripts/python-tools.sh @@ -81,6 +81,7 @@ cmd_create_init() echo "import `module_path $f` as $f" __add_seen $f done + echo fi if [ ${#seen[@]} -eq 0 ]; then