We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76d58d5 commit de8d718Copy full SHA for de8d718
pre-commit.sh
@@ -32,7 +32,7 @@ done
32
33
# 4. Check if a virtual environment was found
34
if [ -z "$VENV_DIR" ]; then
35
- echo "🚨 Error: Virtual environment not found. Please create one (e.g., 'python3 -m venv .venv') and run the hook again."
+ echo "Error: Virtual environment not found. Please create one (e.g., 'python3 -m venv .venv') and run the hook again."
36
exit 1
37
fi
38
@@ -41,7 +41,7 @@ PYTHON_EXEC="$VENV_DIR/bin/python"
41
42
# 6. Check if the interpreter exists
43
if [ ! -x "$PYTHON_EXEC" ]; then
44
- echo "🚨 Error: Python executable not found at $PYTHON_EXEC"
+ echo "Error: Python executable not found at $PYTHON_EXEC"
45
46
47
0 commit comments