See: https://pypi.org/project/mccabe ### Repository commit master ### Python version (python --version) Python 3.11.0 ### Dependencies version (pip freeze) None ### Expected behavior % `flake8 --select=C --max-complexity=21 .` # --> no errors. ### Actual behavior `linear_algebra/src/polynom_for_points.py:1:1: C901 'points_to_polynomial' is too complex (23)` Reduce the complexity of `points_to_polynomial()` and then lower the `--max-complexity` threshold in the file `.flake8`.