We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20e5f97 commit 3140f53Copy full SHA for 3140f53
2 files changed
src/specify_cli/integrations/catalog.py
@@ -253,7 +253,7 @@ def _fetch_single_catalog(
253
cache_file.unlink(missing_ok=True)
254
cache_meta.unlink(missing_ok=True)
255
except OSError:
256
- pass
+ pass # Cache cleanup is best-effort; ignore deletion failures.
257
258
try:
259
with urllib.request.urlopen(entry.url, timeout=10) as resp:
tests/integrations/test_integration_catalog.py
@@ -2,7 +2,6 @@
2
3
import json
4
import os
5
-from pathlib import Path
6
7
import pytest
8
import yaml
0 commit comments