Generate cache key from URL - sanitized for filesystem use.
(self, url: str)
| 379 | cleanup_stale_platformio_locks(max_age_minutes=30) |
| 380 | |
| 381 | def _get_cache_key(self, url: str) -> str: |
| 382 | """Generate cache key from URL - sanitized for filesystem use.""" |
| 383 | return str(sanitize_url_for_path(url)) |
| 384 | |
| 385 | def download_artifact(self, url: str) -> str: |
| 386 | """ |
no test coverage detected