~didrocks/+junk/face-detection-15.04

« back to all changes in this revision

Viewing changes to .pep8

  • Committer: Didier Roche
  • Date: 2016-06-02 13:17:17 UTC
  • Revision ID: didier.roche@canonical.com-20160602131717-5t29yi3cpwxjpa2m
Add to bzr 15.04

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[pep8]
 
2
exclude = env/,*.xml,*kulka/,*SimpleWebSocketServer/,*snap*,stage/,home.map,sphero.hw,*.sqlite,*.png
 
3
max-line-length = 120
 
4
# ignore "Identation is not multiple of 4" for continuation line
 
5
# ignore as well lambda assignement expression (we are doing one for nil effect)
 
6
# ignore import not on top of file due to kulka (after sys.path.insert)
 
7
ignore = E111,E731,E402