From 7cf66453e21a24df471b5c4618a5424811e7042e Mon Sep 17 00:00:00 2001 From: SergioCc13 Date: Sun, 30 Aug 2026 01:51:25 +0200 Subject: [PATCH] docs: add server_datamodel example to examples page examples/server_datamodel.py exists and is exercised by CI (test/examples/test_examples.py::test_server_datamodel) but was not referenced in doc/source/examples.rst, so it never appeared in the published documentation. Add it to the advanced examples section, alongside the other server_* examples, using the same automodule format. --- doc/source/examples.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/source/examples.rst b/doc/source/examples.rst index 4a237ec5d..6242ba0a5 100644 --- a/doc/source/examples.rst +++ b/doc/source/examples.rst @@ -126,6 +126,15 @@ Source: :github:`examples/server_updating.py` :noindex: +Server datamodel +^^^^^^^^^^^^^^^^ +Source: :github:`examples/server_datamodel.py` + +.. automodule:: examples.server_datamodel + :undoc-members: + :noindex: + + Simulator example ^^^^^^^^^^^^^^^^^ Source: :github:`examples/simulator.py`