Skip to content

Commit a249b40

Browse files
ilinumgvanrossum
authored andcommitted
Make flake8 not complain about star imports (#1519)
This commit disables following flake8 errors: * F403: `‘from module import *’ used; unable to detect undefined names` * F405: `name may be undefined, or defined from star imports: module` We don't need to worry about undefined names since running mypy_test.py should detect such undefined names.
1 parent aa68403 commit a249b40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# 34 E127 continuation line over-indented for visual indent
1515

1616
[flake8]
17-
ignore = F401, F811, E127, E128, E301, E302, E305, E501, E701, E704, B303
17+
ignore = F401, F403, F405, F811, E127, E128, E301, E302, E305, E501, E701, E704, B303
1818
# We are checking with Python 3 but many of the stubs are Python 2 stubs.
1919
# A nice future improvement would be to provide separate .flake8
2020
# configurations for Python 2 and Python 3 files.

0 commit comments

Comments
 (0)