AP_TECS: Remove duplicate setting of flare pitch upper limit
[ardupilot.git] / .flake8
blob2c66c08aedcb0775180ea750b497379403dbe210
1 [flake8]
2 extend-ignore =
3     # H301: one import per line
4     H301,
5     # H306: imports not in alphabetical order (time, os)
6     H306,
7     # E226: missing whitespace around arithmetic operator
8     E226,
9     # E261 at least two spaces before inline comment
10     E261,
11     # W504 line break after binary operator
12     W504,
13     # E203 whitespace before ':'
14     E203,
15     # E221 multiple spaces before operator
16     E221
18 extend-exclude =
19     build,
20     modules,
21     .git
23 max-line-length = 127