mirror of
https://github.com/dbarzin/pandora-box.git
synced 2025-07-18 21:09:41 +02:00
8 lines
184 B
Bash
Executable file
8 lines
184 B
Bash
Executable file
#!/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
|