Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kliment/Printrun.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Seguin <guillaume@segu.in>2014-04-03 13:15:59 +0400
committerGuillaume Seguin <guillaume@segu.in>2014-04-03 13:15:59 +0400
commit0259f299892b31eca5b7208fa8054a6dc85d91cb (patch)
tree3768448c117c0977e8ad4a9bae10373233619719 /README.cleanup
parentd6bd9e75bde71c70bbc3cc82b6b7671ad497f61a (diff)
flake8 cleanup on projectlayer
Diffstat (limited to 'README.cleanup')
-rw-r--r--README.cleanup2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.cleanup b/README.cleanup
index d282dab..0f9d8db 100644
--- a/README.cleanup
+++ b/README.cleanup
@@ -28,7 +28,7 @@ Obviously this is not a perfect solution, it WILL break the code. Juste check th
Flake8 checking:
Flake8 can be used to check the coding style of the project.
The current source code (as of July 23rd 2013) has been checked using the following command:
- flake8 . --statistics --count --ignore=E251,E701,E302,E501 --exclude=.svn,CVS,.bzr,.hg,.git,__pycache__,prontserve.py,./printrun/server,projectlayer.py,./printrun/cairosvg
+ flake8 . --statistics --count --ignore=E251,E701,E302,E501 --exclude=.svn,CVS,.bzr,.hg,.git,__pycache__,./printrun/cairosvg
This call ignores 4 kind of errors (E501: line being greater than 80 chars,
E701: multiple statements on one line (usually this is if ...: ...), E302:
wrong number of blank lines between functions, E251: unexpected spaces around