Skip to content

Commit

Permalink
style: use underscore for an unused loop variable
Browse files Browse the repository at this point in the history
This addresses the SC2034 warning.
  • Loading branch information
vil02 committed Jan 22, 2025
1 parent 2606e6b commit 530adb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 530adb3

Please sign in to comment.