From 05946431ca5eac277e6269a8d2c172cd0b084cf8 Mon Sep 17 00:00:00 2001 From: Charlie Crane Date: Tue, 4 Feb 2025 11:19:13 +0000 Subject: [PATCH] #2887 - Correct type in documentation --- docs/source/how_to_guides/extensible_nodes.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/source/how_to_guides/extensible_nodes.rst b/docs/source/how_to_guides/extensible_nodes.rst index 6651b618..043d0f06 100644 --- a/docs/source/how_to_guides/extensible_nodes.rst +++ b/docs/source/how_to_guides/extensible_nodes.rst @@ -18,8 +18,7 @@ Node classes all inherit from the base Node Class, though new classes should inh The use of an `__init__` method is not necessary, as configurable variables for the class should be specified within the `config` of the class, and passed at run time via your YAML configuration using the `from_config` method. - -An example of how additional Node classes is below, taken from `router.py` withing PrimAITE. +An example of how additional Node classes is below, taken from `router.py` within PrimAITE. .. code-block:: Python