This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SQLObject development repository".
The branch, master has been updated
via bd37317ac0b7f1a1f286acfa8c78bd7016285cfa (commit)
from 217bbb8a7ece95f956dc3718c7d8bb0ddbb34155 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/sqlobject/sqlobject/ci/bd37317ac0b7f1a1f286acfa8c78bd7016285cfa
commit bd37317ac0b7f1a1f286acfa8c78bd7016285cfa
Author: Oleg Broytman <ph...@ph...>
Date: Sun Jul 10 17:39:25 2016 +0300
Ignore flake8's F405
Ignore F405 NAME may be undefined, or defined from star imports. We use
start import a lot.
diff --git a/setup.cfg b/setup.cfg
index 5aef598..f058df0 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -13,7 +13,8 @@ exclude = .git,docs/europython/*.py,ez_setup.py
; Ignore:
; E401 multiple imports on one line
; F403 'from module import *' used; unable to detect undefined names
-ignore = E401,F403
+; F405 NAME may be undefined, or defined from star imports
+ignore = E401,F403,F405
[pudge]
theme = pythonpaste.org
-----------------------------------------------------------------------
Summary of changes:
setup.cfg | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
hooks/post-receive
--
SQLObject development repository
|