Update container docstrings

This commit is contained in:
Marek Wolan
2023-08-21 10:04:23 +01:00
parent 07b740a81e
commit 7e64acd368
2 changed files with 4 additions and 2 deletions

View File

@@ -5,12 +5,13 @@ from primaite.simulator.network.hardware.base import Link, Node
class NetworkContainer(SimComponent):
"""TODO."""
"""Top level container object representing the physical network."""
nodes: Dict[str, Node] = {}
links: Dict[str, Link] = {}
def __init__(self, **kwargs):
"""Initialise the network."""
super().__init__(**kwargs)
self.action_manager = ActionManager()