Skip to content

Commit

Permalink
feat: fieldsets typing (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasvinclav authored Nov 15, 2023
1 parent badb964 commit 013c8f2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/unfold/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ def __call__(self, *args, **kwargs):
pass


FieldsetsType = List[Tuple[Union[str, None], Dict[str, Any]]]
FieldsetsType = Union[
List[Tuple[Union[str, None], Dict[str, Any]]],
Tuple[Tuple[Union[str, None], Dict[str, Any]]],
]

0 comments on commit 013c8f2

Please sign in to comment.