Skip to content
This repository was archived by the owner on Jun 10, 2020. It is now read-only.

Commit f32978e

Browse files
committed
Ignore F8111 flake8 error
It conflicts with `@overload`s in type stubs
1 parent a4857d4 commit f32978e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
# E305 expected 2 blank lines after class or function definition, found 1
55
# E701 multiple statements on one line (colon)
66
# E704 multiple statements on one line (def)
7+
# F811 redefinition of unused (not compatible with @overload)
78

89
[flake8]
9-
ignore = E301, E302, E305, E701, E704
10+
ignore = E301, E302, E305, E701, E704, F811
1011
exclude = .git,__pycache__,tests/reveal

0 commit comments

Comments
 (0)