mirror of
https://github.com/dbarzin/pandora-box.git
synced 2025-07-19 05:19:40 +02:00
9 lines
184 B
Bash
9 lines
184 B
Bash
|
#!/usr/bin/bash
|
||
|
# sudo apt install pylint black python3-autopep8
|
||
|
|
||
|
black -l 90 ./pandora-box.py
|
||
|
|
||
|
autopep8 ./pandora-box.py --in-place --aggressive --aggressive
|
||
|
|
||
|
pylint ./pandora-box.py
|