Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
workloadmgr / pep-script.sh
Size: Mime:
#!/bin/bash

# Install autopep8
# Install pep8

autopep8  -r --in-place .
#find . -name '*.py' -exec autopep8 --in-place --aggressive --aggressive --aggressive '{}' \;
pycodestyle --ignore=E501,E126,E122,E712,E402,E265,E266,E731