From f27ffae5cd29123a8f6d3a756eabd0c187a8ba9a Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Mon, 1 Jun 2026 20:13:12 +0200 Subject: [PATCH] python-tools.sh: Create empty line after import The generated code doesn't pass "make check": It would like to see a newline after the import statement. Add that. 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 97956c10..4d2baa0e 100644 --- a/scripts/python-tools.sh +++ b/scripts/python-tools.sh @@ -40,6 +40,7 @@ cmd_create_init() echo "# >> $del >>" echo "# ruff: noqa: E501" echo "from pkgutil import extend_path" + echo "" echo "__path__ = extend_path(__path__, __name__)" local f local -A seen=()