mirror of
https://hub.njuu.cf/TheAlgorithms/Python.git
synced 2023-10-11 13:06:12 +08:00
79ef431cec
* Reduce the complexity of sorts/merge_insertion_sort.py * Add tests * Lower the --max-complexity threshold in the file .flake8
11 lines
245 B
INI
11 lines
245 B
INI
[flake8]
|
|
max-line-length = 88
|
|
# max-complexity should be 10
|
|
max-complexity = 17
|
|
extend-ignore =
|
|
# Formatting style for `black`
|
|
# E203 is whitespace before ':'
|
|
E203,
|
|
# W503 is line break occurred before a binary operator
|
|
W503
|