From e8c3b6a620addc9456df55731728f0cd14e04536 Mon Sep 17 00:00:00 2001 From: Roman Mogilatov Date: Mon, 23 Mar 2015 16:40:59 +0200 Subject: [PATCH] Removing of old check function from manage.py --- manage.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/manage.py b/manage.py index 224f5597..8aed538d 100644 --- a/manage.py +++ b/manage.py @@ -23,16 +23,5 @@ def tag(): os.system('git push --tags') -@manager.command -def check(): - """Check `objects` library and examples with code analyzers.""" - os.system('pylint objects/ --rcfile=./.pylintrc') - os.system('flake8 objects/') - os.system('pep257 objects/') - - os.system('flake8 examples/') - os.system('pep257 examples/') - - if __name__ == '__main__': manager.main()