Skip to content

Commit b80575a

Browse files
committed
chore: remove protocol from BaseMessage class
1 parent 7395084 commit b80575a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rai/rai/communication/base_connector.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
# limitations under the License.
1414

1515
from abc import abstractmethod
16-
from typing import Any, Callable, Dict, Generic, Optional, Protocol, TypeVar
16+
from typing import Any, Callable, Dict, Generic, Optional, TypeVar
1717
from uuid import uuid4
1818

1919

20-
class BaseMessage(Protocol):
20+
class BaseMessage:
2121
payload: Any
2222
metadata: Dict[str, Any]
2323

0 commit comments

Comments
 (0)