From e739b8f0b85d39ebdb1afc0809f6b3daed7a766b Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Thu, 25 Jun 2026 18:09:56 +0200 Subject: [PATCH] python-tools.sh: Next attempt to satisfy formatter Commit 55060486 does not satisfy yapf in all places of the source code, so have another attempt at it. Signed-off-by: Jan Lindemann --- scripts/python-tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/python-tools.sh b/scripts/python-tools.sh index aa83d8f5..b9724178 100644 --- a/scripts/python-tools.sh +++ b/scripts/python-tools.sh @@ -81,12 +81,12 @@ cmd_create_init() echo "import `module_path $f` as $f" __add_seen $f done - echo fi if [ ${#seen[@]} -eq 0 ]; then echo "__all__ = []" else + echo echo "__all__ = [" for dst_type in ${!seen[@]}; do echo " \"$dst_type\","