Skip to content

Commit

Permalink
Exclude F403 from Flake8
Browse files Browse the repository at this point in the history
Flake8 gives a F403 error when you use a "star import" like "from parsing
import *", because it cannot detect undefined names when it sees one. When
running Flake8 for the first time on the repo, I made sure there were no
star imports anymore to do a full analysis, but now there's no reason to
disallow star imports.
  • Loading branch information
thomas-daniels committed Jan 28, 2015
1 parent 7f71983 commit 893ecc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[flake8]
ignore = E501
ignore = E501,F403
exclude = ChatExchange/*,bayesian/*,.idea/*,.git/*

0 comments on commit 893ecc7

Please sign in to comment.