We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent badb964 commit 013c8f2Copy full SHA for 013c8f2
src/unfold/typing.py
@@ -17,4 +17,7 @@ def __call__(self, *args, **kwargs):
17
pass
18
19
20
-FieldsetsType = List[Tuple[Union[str, None], Dict[str, Any]]]
+FieldsetsType = Union[
21
+ List[Tuple[Union[str, None], Dict[str, Any]]],
22
+ Tuple[Tuple[Union[str, None], Dict[str, Any]]],
23
+]
0 commit comments