diff --git a/src/primaite/simulator/network/hardware/nodes/host/host_node.py b/src/primaite/simulator/network/hardware/nodes/host/host_node.py index e354d96a..6eb88131 100644 --- a/src/primaite/simulator/network/hardware/nodes/host/host_node.py +++ b/src/primaite/simulator/network/hardware/nodes/host/host_node.py @@ -319,7 +319,7 @@ class HostNode(Node): @property def arp(self) -> Optional[ARP]: """ - Return the ARP Cache of the HostNode + Return the ARP Cache of the HostNode. :return: ARP Cache for given HostNode :rtype: Optional[ARP] diff --git a/src/primaite/simulator/network/hardware/nodes/network/network_node.py b/src/primaite/simulator/network/hardware/nodes/network/network_node.py index d9304f4d..89b3d80f 100644 --- a/src/primaite/simulator/network/hardware/nodes/network/network_node.py +++ b/src/primaite/simulator/network/hardware/nodes/network/network_node.py @@ -33,7 +33,7 @@ class NetworkNode(Node): @property def arp(self) -> Optional[ARP]: """ - Return the ARP Cache of the NetworkNode + Return the ARP Cache of the NetworkNode. :return: ARP Cache for given NetworkNode :rtype: Optional[ARP]