We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9ff7ac commit 225bdc0Copy full SHA for 225bdc0
.github/workflows/deploy.yml
@@ -2,6 +2,8 @@ name: Publish tutorial to GitHub Pages
2
on:
3
push:
4
branches: ["main"]
5
+ paths:
6
+ - 'tutorial/**'
7
workflow_dispatch:
8
9
permissions:
src/sparql_llm/utils.py
@@ -218,6 +218,7 @@ def _ensure_loaded(self) -> None:
218
f"💾 Loaded endpoints metadata from {ENDPOINTS_METADATA_FILE.resolve()} "
219
f"for {len(self._void_dict)} endpoints"
220
)
221
+ self._initialized = True
222
return
223
except Exception as e:
224
logger.debug(f"Could not load metadata from {ENDPOINTS_METADATA_FILE}: {e}")
0 commit comments