Skip to content

Commit 1718df8

Browse files
committed
@sanderegg fix absolute imports
1 parent 8bd254d commit 1718df8

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

packages/models-library/src/models_library/storage_schemas.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,6 @@
1414
from typing import Annotated, Any, Literal, Self, TypeAlias
1515
from uuid import UUID
1616

17-
from models_library.api_schemas_rpc_async_jobs.async_jobs import (
18-
AsyncJobRpcGet,
19-
AsyncJobRpcResult,
20-
AsyncJobRpcStatus,
21-
)
22-
from models_library.api_schemas_storage.data_export_async_jobs import (
23-
DataExportTaskStartInput,
24-
)
2517
from models_library.projects import ProjectID
2618
from models_library.users import UserID
2719
from pydantic import (
@@ -38,6 +30,12 @@
3830
)
3931
from pydantic.networks import AnyUrl
4032

33+
from .api_schemas_rpc_async_jobs.async_jobs import (
34+
AsyncJobRpcGet,
35+
AsyncJobRpcResult,
36+
AsyncJobRpcStatus,
37+
)
38+
from .api_schemas_storage.data_export_async_jobs import DataExportTaskStartInput
4139
from .basic_regex import DATCORE_DATASET_NAME_RE, S3_BUCKET_NAME_RE
4240
from .basic_types import SHA256Str
4341
from .generics import ListModel

0 commit comments

Comments
 (0)