1
0
Fork 0

add module enjo_lib.comm.method, move stuff to there

main
Felix Stupp 2 years ago
parent 08c2a22a43
commit d9fc036931
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -14,7 +14,7 @@ from typing import (
TypeAlias, TypeAlias,
) )
from ..our_types import ( from ...our_types import (
JSON, JSON,
) )

@ -3,12 +3,12 @@ from __future__ import annotations
import asyncio import asyncio
from functools import partial from functools import partial
from .method import ( from .interface import (
MessageHandler, MessageHandler,
TransportMethod, TransportMethod,
TransmissionSuccess, TransmissionSuccess,
) )
from ..our_types import JSON from ...our_types import JSON
class InternalTransport(TransportMethod): class InternalTransport(TransportMethod):

@ -10,7 +10,7 @@ from unittest.mock import (
MagicMock, MagicMock,
) )
from enjo_lib.comm.internal import ( from enjo_lib.comm.method.internal import (
InternalExchanger, InternalExchanger,
InternalTransport, InternalTransport,
) )
Loading…
Cancel
Save