blob: 7d446611eb22c0ea70d5eb3d2c58c09dabf96eb0 (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
set -euxo pipefail
poetry run isort --profile hug isort/ tests/ scripts/
poetry run isort --profile hug example_isort_formatting_plugin/
poetry run black isort/ tests/ scripts/
poetry run black example_isort_formatting_plugin/
|