From be08a037adc302766690d74ad74d0326afe09b0d Mon Sep 17 00:00:00 2001 From: Copybara Service Date: Thu, 2 Jul 2026 04:30:21 -0700 Subject: [PATCH] Fix type annotations for pyrefly PiperOrigin-RevId: 941622710 --- fleetspeak_python/fleetspeak/server_connector/connector.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fleetspeak_python/fleetspeak/server_connector/connector.py b/fleetspeak_python/fleetspeak/server_connector/connector.py index f18d1f56..1eb61406 100644 --- a/fleetspeak_python/fleetspeak/server_connector/connector.py +++ b/fleetspeak_python/fleetspeak/server_connector/connector.py @@ -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, @@ -361,6 +362,7 @@ def __init__( Args: service_name: The Fleetspeak service name to communicate with. """ + pass @abc.abstractmethod def Listen( @@ -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 = (