diff --git a/.github/workflows/test_python.yaml b/.github/workflows/test_python.yaml index 0cb8ba4f6e..42cf91c243 100644 --- a/.github/workflows/test_python.yaml +++ b/.github/workflows/test_python.yaml @@ -44,15 +44,6 @@ jobs: python3 -m venv chronon_py_env source chronon_py_env/bin/activate - - name: Run Chronon Python lint (flake8) - shell: bash - run: | - source chronon_py_env/bin/activate - cd api/python/ai/chronon - pip install importlib-metadata==4.11.4 - pip install flake8 - flake8 --extend-ignore=W605,Q000,F631 --exclude=cli - - name: Run Chronon Python lint (ruff) shell: bash run: | diff --git a/api/python/tox.ini b/api/python/tox.ini index 59bcc76aea..aac7896aee 100644 --- a/api/python/tox.ini +++ b/api/python/tox.ini @@ -30,6 +30,3 @@ commands = --cov-report term \ --cov-report html \ {posargs} - -[flake8] -max-line-length = 120