Skip to content

Commit f3ce914

Browse files
committed
fix: tipo ontology_store_service
1 parent a415f33 commit f3ce914

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ src/core/modules/common/integrations/siteanalyzer/target/wheels/siteanalyzer-*.w
55
@ make -C src/core/modules/common/integrations/siteanalyzer release
66

77
.venv: $(DEPENDENCIES)
8-
#@ make src/core/modules/common/integrations/siteanalyzer/target/wheels/siteanalyzer-*.whl
98
@ docker compose run --rm --remove-orphans abi poetry install
109
@ docker compose run --rm --remove-orphans abi bash -c 'poetry run python -m pip install --force-reinstall /app/src/core/modules/common/integrations/siteanalyzer/target/wheels/*.whl'
1110

src/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def from_yaml(cls, yaml_path: str = "config.yaml") -> 'Config':
8585
for module in modules:
8686
for trigger in module.triggers:
8787
topic, event_type, callback = trigger
88-
services.ontology_store.subscribe(topic, event_type, callback)
88+
services.ontology_store_service.subscribe(topic, event_type, callback)
8989

9090
if __name__ == "__main__":
9191
cli()

0 commit comments

Comments
 (0)