mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-05 07:38:56 +00:00
20 lines
614 B
Bash
Executable File
20 lines
614 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo '
|
|
_______ ________ _______ ______
|
|
| \ | \| \ / \
|
|
| $$$$$$$\| $$$$$$$$| $$$$$$$\| $$$$$$\
|
|
| $$__/ $$| $$__ | $$__/ $$| $$__/ $$
|
|
| $$ $$| $$ \ | $$ $$ >$$ $$
|
|
| $$$$$$$ | $$$$$ | $$$$$$$ | $$$$$$
|
|
| $$ | $$_____ | $$ | $$__/ $$
|
|
| $$ | $$ \| $$ \$$ $$
|
|
\$$ \$$$$$$$$ \$$ \$$$$$$
|
|
|
|
'
|
|
|
|
|
|
find . -name '*.py' -exec autopep8 --in-place -v --aggressive --aggressive \{\} \;
|
|
|
|
echo "It's all clean now!"
|