File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ from .types import Name as Name
2+ from .types import LogLevel as LogLevel
3+ from .types import MsgType as MsgType
4+ from .types import Base as Base
5+ from .types import ILogger as ILogger
6+ from .node import BaseNode as BaseNode
7+ from .protocol import IProtocolListener as IProtocolListener
8+ from .protocol import Protocol as Protocol
Original file line number Diff line number Diff line change 11from typing import Any
2- from typing import Protocol as ProptocolType
2+ from typing import Protocol as ProtocolType
33from .types import Base , LogLevel , MsgType
44
55
6- class IProtocolListener (ProptocolType ):
6+ class IProtocolListener (ProtocolType ):
77 # interface for protocol listeners
88 def handle_link (self , name : str ) -> None :
99 # called when a link is created
You can’t perform that action at this time.
0 commit comments