Skip to content

Commit

Permalink
Sort imports
Browse files Browse the repository at this point in the history
Fix CI errors

Signed-off-by: Arthit Suriyawongkul <[email protected]>
  • Loading branch information
bact committed Jan 29, 2025
1 parent 794d50a commit 9ba0888
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions python/mlcroissant/mlcroissant/_src/core/dataclasses.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,16 @@

from __future__ import annotations

from collections.abc import Iterator
from collections.abc import Mapping
from collections.abc import Sequence
import dataclasses
import inspect
from typing import Any, Callable, cast, Literal, TypedDict, Union
from collections.abc import Iterator, Mapping, Sequence
from typing import Any, Callable, Literal, TypedDict, Union, cast

from rdflib import term
from rdflib.namespace import SDO
from typing_extensions import dataclass_transform

from mlcroissant._src.core.context import Context
from mlcroissant._src.core.context import CroissantVersion
from mlcroissant._src.core.types import Json
from mlcroissant._src.core.context import Context, CroissantVersion

MATCHING_TYPES: Mapping[term.URIRef, type] = {
SDO.Boolean: bool,
Expand Down

0 comments on commit 9ba0888

Please sign in to comment.