From 34b61f9a9f65e036163cb351828202cc5af9f964 Mon Sep 17 00:00:00 2001 From: Alejandro Villar Date: Tue, 3 Sep 2024 10:41:53 +0200 Subject: [PATCH] Fix semantic-uplift.yaml file name --- ogc/bblocks/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ogc/bblocks/models.py b/ogc/bblocks/models.py index 4bec025..c2f5865 100644 --- a/ogc/bblocks/models.py +++ b/ogc/bblocks/models.py @@ -221,7 +221,7 @@ def output_openapi_contents(self): @property def semantic_uplift(self): if 'semantic_uplift' not in self._lazy_properties: - fn = self.files_path / 'semantic_uplift.yaml' + fn = self.files_path / 'semantic-uplift.yaml' semantic_uplift = {} if fn.is_file(): semantic_uplift = load_yaml(fn)