Fix implicit re-export error by importing IWormhole from wormhole library directly

This commit is contained in:
dlee 2023-03-08 15:16:03 -06:00
parent 582876197a
commit 8ccbd37d29

View File

@ -19,7 +19,8 @@ from ...util.jsonbytes import dumps_bytes
from ..common_util import run_cli
from ..no_network import GridTestMixin
from .common import CLITestMixin
from .wormholetesting import IWormhole, MemoryWormholeServer, TestingHelper, memory_server
from .wormholetesting import MemoryWormholeServer, TestingHelper, memory_server
from wormhole._interfaces import IWormhole
# Logically:
# JSONable = dict[str, Union[JSONable, None, int, float, str, list[JSONable]]]