Skip to content

Commit 06e8a41

Browse files
committed
in sync with actions now?
1 parent 8a44827 commit 06e8a41

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

tests/test_tabi.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@
3838
3939
4040
41-
from typing_extensions import Required
42-
43-
4441
class MyTableRow(TypedDict, total=False):
4542
id: Required[str]
4643
""" Required property """
@@ -60,7 +57,7 @@ class MyTableRow(TypedDict, total=False):
6057
active: Required[bool]
6158
""" Required property """
6259
63-
optional: Dict[str, Any]
60+
optional: dict[str, Any]
6461
6562
6663
@@ -350,9 +347,6 @@ def delete_many(*args, **kwargs) -> PolyDeleteResults:
350347
351348
352349
353-
from typing_extensions import Required
354-
355-
356350
class MyTableRow(TypedDict, total=False):
357351
id: Required[str]
358352
""" Required property """
@@ -370,8 +364,8 @@ class MyTableRow(TypedDict, total=False):
370364
371365
class _MyTableRowdata(TypedDict, total=False):
372366
foo: str
373-
nested: List["_MyTableRowdatanesteditem"]
374-
other: Union[str, Union[int, float], Dict[str, Any], List[Any], bool, None]
367+
nested: list["_MyTableRowdatanesteditem"]
368+
other: str | int | float | dict[str, Any] | list[Any] | bool | None
375369
"""
376370
x-poly-ref:
377371
path: some.other.Schema

0 commit comments

Comments
 (0)