From 5fde945facd30e1161e03593a55744670fb3778e Mon Sep 17 00:00:00 2001 From: Marek Wolan Date: Wed, 2 Oct 2024 14:24:59 +0100 Subject: [PATCH] rename identifier back to type --- src/primaite/simulator/network/creation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/primaite/simulator/network/creation.py b/src/primaite/simulator/network/creation.py index 41fc3f87..2eefa75f 100644 --- a/src/primaite/simulator/network/creation.py +++ b/src/primaite/simulator/network/creation.py @@ -40,7 +40,7 @@ class NetworkNodeAdder(BaseModel): by the from_config method to select the correct node adder at runtime. """ - identifier: str + type: str """Uniquely identifies the node adder class to use for adding nodes to network.""" _registry: ClassVar[Dict[str, Type["NetworkNodeAdder"]]] = {}