style: use underscore for an unused loop variable (#1593)

This addresses the SC2034 warning.
This commit is contained in:
Piotr Idzik
2025-02-09 23:56:52 +01:00
committed by GitHub
parent f639b052e3
commit 568ab33a37

View File

@@ -31,7 +31,7 @@ check_and_start_docker() {
# Wait for Docker to be fully operational with animated dots
echo -n "Waiting for Docker to start"
while ! docker system info > /dev/null 2>&1; do
for i in {1..3}; do
for _ in {1..3}; do
echo -n "."
sleep 1
done