I have:
- repo: https://github.com/asottile/seed-isort-config
rev: v2.2.0
hooks:
- id: seed-isort-config
- repo: https://github.com/timothycrosley/isort
rev: 5.9.2
hooks:
- id: isort
name: Run isort to sort imports
types: [python3]
I execute:
pre-commit run --files myproject/draft.py
What I see in the logs:
seed isort known_third_party.............................................Passed
Run isort to sort imports............................(no files to check)Skipped
I don't understand why it says skip? I gave it direct path to python file how can there be no files to check?