# HG changeset patch # User Pierre-Yves David # Date 1488479292 -3600 # Node ID 3e8fcf47fb1e1c6ff45f675801d72bcaa5925da9 # Parent a6410877339afd34338f8df8748c04ada88a4746 flake8: ignore an addition rules related to import Our initialization code is too complex to make flake8 happy diff -r a6410877339a -r 3e8fcf47fb1e setup.cfg --- a/setup.cfg Thu Mar 02 19:25:54 2017 +0100 +++ b/setup.cfg Thu Mar 02 19:28:12 2017 +0100 @@ -14,6 +14,8 @@ E302, # expected 2 blank lines after end of function or class E305, + # module level import not at top of file + E402, # line too long (82 > 79 characters) E501, # do not assign a lambda expression, use a def