From 35df101b35a4caf56eb8ba6699f9b9f4941eaef0 Mon Sep 17 00:00:00 2001 From: Marcio Mazza Date: Thu, 17 Aug 2017 17:35:34 -0300 Subject: [PATCH] =?UTF-8?q?Adiciona=20corre=C3=A7=C3=A3o=20autom=C3=A1tica?= =?UTF-8?q?=20de=20erros=20de=20PEP=208?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fix_qa.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fix_qa.sh b/fix_qa.sh index a3ac9d843..264c01676 100755 --- a/fix_qa.sh +++ b/fix_qa.sh @@ -8,4 +8,5 @@ # Uma forma simples de fazer isso é adicionando antes suas mudanças à # "staging area" do git, com `git add .` e após usar o script `git diff`. -isort --recursive --skip='migrations' --skip='templates' --skip='ipython_log.py' . +isort --recursive --skip='migrations' --skip='templates' --skip='ipython_log.py*' . +autopep8 --in-place --recursive . --exclude='migrations,ipython_log.py*'