Difference between revisions of "Python Beautifier"
From Teknologisk videncenter
(Created page with "<source lang=python> pip install autopep8 autopep8 your_script.py # dry-run, only print autopep8 -i your_script.py # replace content </source> Category:Python") |
(No difference)
|
Latest revision as of 12:38, 24 June 2024
pip install autopep8
autopep8 your_script.py # dry-run, only print
autopep8 -i your_script.py # replace content