File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
src/servicelib/long_running_interfaces
tests/long_running_interfaces Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 11from ._client import Client
2+ from ._errors import FinishedWithError , TimedOutError
23from ._models import (
34 JobUniqueId ,
45 LongRunningNamespace ,
1213__all__ = (
1314 "BaseServerJobInterface" ,
1415 "Client" ,
16+ "FinishedWithError" ,
1517 "JobUniqueId" ,
1618 "LongRunningNamespace" ,
1719 "RemoteHandlerName" ,
1820 "ResultModel" ,
1921 "Server" ,
2022 "StartParams" ,
23+ "TimedOutError" ,
2124)
Original file line number Diff line number Diff line change 99
1010import pytest
1111from pydantic import NonNegativeInt , ValidationError
12- from servicelib .long_running_interfaces import Client , LongRunningNamespace , Server
13- from servicelib .long_running_interfaces ._errors import FinishedWithError , TimedOutError
12+ from servicelib .long_running_interfaces import (
13+ Client ,
14+ FinishedWithError ,
15+ LongRunningNamespace ,
16+ Server ,
17+ TimedOutError ,
18+ )
1419from servicelib .long_running_interfaces .runners .asyncio_tasks import (
1520 AsyncioTasksJobInterface ,
1621 AsyncTaskRegistry ,
You can’t perform that action at this time.
0 commit comments