11 lines
133 B
Bash
Executable File
11 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Format with black
|
|
black argostranslate
|
|
black setup.py
|
|
|
|
# Sort imports with isort
|
|
isort argostranslate
|
|
isort setup.py
|
|
|