From bae4e80500b552f7b3658a1a6a158fef02047f58 Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Wed, 7 May 2025 11:31:20 +0200 Subject: Remove the existing handler (and unused) in socketserver --- interfaces/endpoint.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'interfaces/endpoint.py') diff --git a/interfaces/endpoint.py b/interfaces/endpoint.py index 4da7c57..2f3af95 100755 --- a/interfaces/endpoint.py +++ b/interfaces/endpoint.py @@ -5,7 +5,6 @@ from zope.interface import Attribute class IEndpoint(interface.Interface): - queue = Attribute("""The queue to send the message""") state = Attribute("""The connection status""") def isConnected(self) -> bool: @@ -59,7 +58,6 @@ class EndPoint(object): def __init__(self, connection): self.connection = connection - self.queue = None self.state = self.STATE_DISCONNECTED def isConnected(self) -> bool: -- cgit v1.2.3