Skip to content

Commit 9ba0888

Browse files
committed
Sort imports
Fix CI errors Signed-off-by: Arthit Suriyawongkul <[email protected]>
1 parent 794d50a commit 9ba0888

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

python/mlcroissant/mlcroissant/_src/core/dataclasses.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,16 @@
55

66
from __future__ import annotations
77

8-
from collections.abc import Iterator
9-
from collections.abc import Mapping
10-
from collections.abc import Sequence
118
import dataclasses
129
import inspect
13-
from typing import Any, Callable, cast, Literal, TypedDict, Union
10+
from collections.abc import Iterator, Mapping, Sequence
11+
from typing import Any, Callable, Literal, TypedDict, Union, cast
1412

1513
from rdflib import term
1614
from rdflib.namespace import SDO
1715
from typing_extensions import dataclass_transform
1816

19-
from mlcroissant._src.core.context import Context
20-
from mlcroissant._src.core.context import CroissantVersion
21-
from mlcroissant._src.core.types import Json
17+
from mlcroissant._src.core.context import Context, CroissantVersion
2218

2319
MATCHING_TYPES: Mapping[term.URIRef, type] = {
2420
SDO.Boolean: bool,

0 commit comments

Comments
 (0)