replace pylint with flake8 everywhere

This commit is contained in:
Sarah Hoffmann
2024-11-10 23:14:09 +01:00
parent 122ecd4626
commit d77aa7dfc9
5 changed files with 16 additions and 9 deletions

View File

@@ -103,12 +103,12 @@ jobs:
- name: Install Python webservers
run: pip3 install falcon starlette asgi_lifespan
- name: Install latest pylint
run: pip3 install -U pylint
- name: Install latest flake8
run: pip3 install -U flake8
if: matrix.flavour == 'ubuntu-22'
- name: Python linting
run: python3 -m pylint src
run: python3 -m flake8 src
working-directory: Nominatim
if: matrix.flavour == 'ubuntu-22'