Skip to content

Commit

Permalink
fix swag
Browse files Browse the repository at this point in the history
  • Loading branch information
mhordynski committed Oct 31, 2024
1 parent 4d79540 commit 9aa404b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/install_git_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
HOOK_BODY = """
#!/usr/bin/env bash
echo "🧹 Running formatting..."
echo "🧹 Running formatting...\n"
uv run ruff format --check
if [ $? -ne 0 ]
Expand All @@ -28,7 +28,7 @@
fi
echo "✅ Formatting passed!"
echo "📜 Running linting..."
echo "\n📜 Running linting...\n"
uv run ruff check
Expand All @@ -38,8 +38,8 @@
exit 1
fi
echo "✅ Formatting passed!"
echo "🔎 Running type checking..."
echo "✅ Linting passed!"
echo "\n🔎 Running type checking...\n"
uv run mypy .
Expand Down

0 comments on commit 9aa404b

Please sign in to comment.