Skip to content

Commit 7a337b7

Browse files
committed
fix docs build
Signed-off-by: Lance Drane <[email protected]>
1 parent b57d720 commit 7a337b7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,8 @@ test-all = "pytest tests/ --cov=src/intersect_sdk/ --cov-fail-under=80 --cov-rep
182182
test-all-debug = "pytest tests/ --cov=src/intersect_sdk/ --cov-fail-under=80 --cov-report=html:reports/htmlcov/ --cov-report=xml:reports/coverage_report.xml --junitxml=reports/junit.xml -s"
183183
test-unit = "pytest tests/unit --cov=src/intersect_sdk/"
184184
test-e2e = "pytest tests/e2e --cov=src/intersect_sdk/"
185-
lint = { composite = ["lint-format", "lint-ruff", "lint-mypy", "lint-spelling"] }
185+
lint = { composite = ["lint-format", "lint-ruff", "lint-mypy", "lint-spelling", "lint-docs"] }
186+
lint-docs = "sphinx-build -W --keep-going docs docs/_build"
186187
lint-format = "ruff format"
187188
lint-ruff = "ruff check --fix"
188189
lint-mypy = "mypy src/intersect_sdk/"

src/intersect_sdk/capability/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def intersect_sdk_listen_for_service_event(
173173
- service: The system-of-system hierarchy which points to the specific service
174174
- event_name: The name of the event we want to listen for
175175
- response_handler: callback for how to handle the reception of an event
176-
The callback submits these parameters:
176+
The callback submits these parameters:
177177
1) message source
178178
2) name of operation
179179
3) name of event

0 commit comments

Comments
 (0)