chore: subs typing import to typing_extensions

This commit is contained in:
2025-11-23 20:05:28 -03:00
parent e43e92cb9e
commit 90639b6426
2 changed files with 2 additions and 3 deletions

View File

@@ -3,11 +3,10 @@ from jambo.parser._type_parser import GenericTypeParser
from jambo.types.type_parser_options import TypeParserOptions from jambo.types.type_parser_options import TypeParserOptions
from pydantic import AnyUrl, EmailStr from pydantic import AnyUrl, EmailStr
from typing_extensions import Unpack from typing_extensions import Any, Unpack
from datetime import date, datetime, time, timedelta from datetime import date, datetime, time, timedelta
from ipaddress import IPv4Address, IPv6Address from ipaddress import IPv4Address, IPv6Address
from typing import Any
from uuid import UUID from uuid import UUID

View File

@@ -2,8 +2,8 @@ from jambo.exceptions import InternalAssertionException, InvalidSchemaException
from jambo.parser import ObjectTypeParser, RefTypeParser from jambo.parser import ObjectTypeParser, RefTypeParser
from pydantic import ValidationError from pydantic import ValidationError
from typing_extensions import ForwardRef
from typing import ForwardRef
from unittest import TestCase from unittest import TestCase