blob: 173f5a6a109fa7b40b82f6fdd1c0391d877f2c6b (
plain) (
blame)
1
2
3
|
#!/usr/bin/env sh
isort *.py cogs/*.py || echo "Error running isort, make sure you have it installed."
black *.py cogs/*.py || echo "Error running black, make sure you have it installed."
|