python-tools.sh: Fix __all__ format violation #34

Merged
Jan Lindemann merged 1 commit from jan/feature/20260625-python-tools-sh-fix-all-format-violation into master 2026-06-25 09:56:50 +02:00 AGit

View file

@ -83,12 +83,15 @@ cmd_create_init()
done
fi
echo
if [ ${#seen[@]} -eq 0 ]; then
echo "__all__ = []"
else
echo "__all__ = ["
for dst_type in ${!seen[@]}; do
echo " \"$dst_type\","
done
echo "]"
fi
echo "# << $del <<"
}