refactor: rename EndpointBase to SocketBase

Because 'endpoint' is also used in the messages, the name 'socket' is more descriptive.

ref: N25B-168
This commit is contained in:
Twirre Meulenbelt
2025-10-09 16:24:31 +02:00
parent 23805812d5
commit e9c6b918e0
4 changed files with 8 additions and 8 deletions

View File

@@ -1,9 +1,9 @@
from abc import ABCMeta, abstractmethod
from robot_interface.endpoints.endpoint_base import EndpointBase
from robot_interface.endpoints.socket_base import SocketBase
class ReceiverBase(EndpointBase, object):
class ReceiverBase(SocketBase, object):
"""Associated with a ZeroMQ socket."""
__metaclass__ = ABCMeta