2025-12-04 10:04:21 +08:00

9 lines
202 B
Bash

#!/usr/bin/env bash
set -e
isort --force-single-line-imports app tests
autoflake --recursive --remove-all-unused-imports --remove-unused-variables --in-place app tests
black app tests
isort app tests