Formats Import Orders

This commit is contained in:
2025-04-17 03:04:38 -03:00
parent 459d9da0b9
commit d5149061a1
12 changed files with 314 additions and 26 deletions

View File

@@ -1,11 +1,11 @@
# Exports generic type parser
from ._type_parser import GenericTypeParser as GenericTypeParser
from .allof_type_parser import AllOfTypeParser as AllOfTypeParser
from .array_type_parser import ArrayTypeParser as ArrayTypeParser
from .boolean_type_parser import BooleanTypeParser as BooleanTypeParser
from .float_type_parser import FloatTypeParser as FloatTypeParser
# Exports Implementations
from .int_type_parser import IntTypeParser as IntTypeParser
from .object_type_parser import ObjectTypeParser as ObjectTypeParser
from .string_type_parser import StringTypeParser as StringTypeParser
from .array_type_parser import ArrayTypeParser as ArrayTypeParser
from .boolean_type_parser import BooleanTypeParser as BooleanTypeParser
from .float_type_parser import FloatTypeParser as FloatTypeParser
from .allof_type_parser import AllOfTypeParser as AllOfTypeParser

View File

@@ -1,8 +1,9 @@
from abc import ABC, abstractmethod
from typing import Generic, TypeVar
from pydantic import Field
from typing_extensions import Self
from pydantic import Field
from abc import ABC, abstractmethod
from typing import Generic, TypeVar
T = TypeVar("T")

View File

@@ -1,13 +1,12 @@
import copy
from jambo.parser._type_parser import GenericTypeParser
from typing import TypeVar
from jambo.utils.properties_builder.mappings_properties_builder import (
mappings_properties_builder,
)
import copy
from typing import TypeVar
V = TypeVar("V")

View File

@@ -1,4 +1,4 @@
from typing import List, Dict, Union, TypedDict, Literal
from typing import Dict, List, Literal, TypedDict, Union
JSONSchemaType = Literal[