Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable checking for python norms and fix violating code (#1168)
This PR: - enables checking coding norms on python scripts using `pycodestyle` via github actions - adds the rules of the norms in `.pycodestyle` - fixes python scripts that violate the norms using `autopep8`. If a python script is failing during norm check, it can be fixed with the following command: ``` $> autopep8 -i --max-line-length 160 --ignore E402,W504 /path/to/offending_script.py ```
- Loading branch information