Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions fleetspeak_python/fleetspeak/server_connector/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,8 @@ class ServiceClient(metaclass=abc.ABCMeta):
implementation of this according to their grpc connection requirements.
"""

@abc.abstractmethod
outgoing: Any = None

def __init__(
self,
service_name: str,
Expand All @@ -361,6 +362,7 @@ def __init__(
Args:
service_name: The Fleetspeak service name to communicate with.
"""
pass

@abc.abstractmethod
def Listen(
Expand Down Expand Up @@ -414,7 +416,7 @@ def __init__(
If both fleetspeak_message_listen_address and fleetspeak_server are
unset.
"""
super(InsecureGRPCServiceClient, self).__init__(service_name)
super(InsecureGRPCServiceClient, self).__init__(service_name) # pyrefly: ignore[missing-attribute]

if fleetspeak_message_listen_address is None:
fleetspeak_message_listen_address = (
Expand Down
Loading