Initial Work on TypeParser Kwargs

This commit is contained in:
2025-06-03 00:44:06 -03:00
parent bef42e4cdb
commit e37e9818ed
9 changed files with 38 additions and 28 deletions

View File

@@ -1,8 +1,7 @@
from jambo.parser.anyof_type_parser import AnyOfTypeParser
from typing_extensions import Annotated
from typing_extensions import Annotated, Union, get_args, get_origin
from typing import Union, get_args, get_origin
from unittest import TestCase

View File

@@ -1,6 +1,7 @@
from jambo.parser import ArrayTypeParser
from typing import get_args
from typing_extensions import get_args
from unittest import TestCase