mirror of
https://hub.njuu.cf/TheAlgorithms/Python.git
synced 2023-10-11 13:06:12 +08:00
db5215f60e
* updating DIRECTORY.md * updating DIRECTORY.md * updating DIRECTORY.md * Lower the --max-complexity threshold in the file .flake8 * Reduce the complexity of linear_algebra/src/polynom_for_points.py * Update linear_algebra/src/polynom_for_points.py Co-authored-by: Christian Clauss <cclauss@me.com> * Update linear_algebra/src/polynom_for_points.py Co-authored-by: Christian Clauss <cclauss@me.com> * Fix Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.com>
9 lines
222 B
INI
9 lines
222 B
INI
[flake8]
|
|
max-line-length = 88
|
|
# max-complexity should be 10
|
|
max-complexity = 21
|
|
extend-ignore =
|
|
# Formatting style for `black`
|
|
E203 # Whitespace before ':'
|
|
W503 # Line break occurred before a binary operator
|