Get the two-layer fingerprint cache for Python linting.
()
| 32 | |
| 33 | |
| 34 | def _get_python_lint_cache() -> TwoLayerFingerprintCache: |
| 35 | """Get the two-layer fingerprint cache for Python linting.""" |
| 36 | cache_dir = Path(".cache") |
| 37 | return TwoLayerFingerprintCache(cache_dir, "python_lint") |
| 38 | |
| 39 | |
| 40 | def check_python_files_changed() -> bool: |
no test coverage detected