mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
978414bd50
* Reduce the complexity of other/graham_scan.py * Lower the --max-complexity threshold in the file .flake8 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix tests * Update other/graham_scan.py Co-authored-by: Christian Clauss <cclauss@me.com> * Update graham_scan.py * Update other/graham_scan.py Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@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 = 19
|
|
extend-ignore =
|
|
# Formatting style for `black`
|
|
E203 # Whitespace before ':'
|
|
W503 # Line break occurred before a binary operator
|