您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
| 12345678910 |
- #!/bin/bash
-
- set -x
-
- SCRIPT_DIR="$(dirname "$(realpath "$0")")"
- cd "$SCRIPT_DIR/.."
-
- # run mypy checks
- uv run --directory api --dev --with pip \
- python -m mypy --install-types --non-interactive --exclude venv ./
|