Python/.flake8
Maxim Smolskiy 79ef431cec
Reduce the complexity of sorts/merge_insertion_sort.py (#7954)
* Reduce the complexity of sorts/merge_insertion_sort.py

* Add tests

* Lower the --max-complexity threshold in the file .flake8
2022-12-24 15:57:28 +01:00

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