mirror of
https://github.com/godotengine/godot
synced 2024-11-02 14:03:02 +00:00
6 lines
126 B
Bash
Executable file
6 lines
126 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -uo pipefail
|
|
|
|
echo -e "Python: mypy static analysis..."
|
|
mypy --config-file=./misc/scripts/mypy.ini .
|