Skip to content

Commit 013c8f2

Browse files
authored
feat: fieldsets typing (#195)
1 parent badb964 commit 013c8f2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/unfold/typing.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@ def __call__(self, *args, **kwargs):
1717
pass
1818

1919

20-
FieldsetsType = List[Tuple[Union[str, None], Dict[str, Any]]]
20+
FieldsetsType = Union[
21+
List[Tuple[Union[str, None], Dict[str, Any]]],
22+
Tuple[Tuple[Union[str, None], Dict[str, Any]]],
23+
]

0 commit comments

Comments
 (0)