I have a python project running in a virtual environment (created by poetry).
pylint is installed only in the virtual environment, not in the base.
pylint works well in the venv from command line, via pre-commit and inside Visual Studio Code which I start from the command line (poetry shell).
GitHub desktop cannot be started from the venv command line and when I try using it to commit my updated code it fails because the pre-commit hooks are launched and fail since it does not find pylint.
How to fix (other than installing pylint in the base env)?