[RFC]typed:Add support for parametrized tuple type
Open
Not a Bug
RFC
typed_dynaconf
- Dominant language
- Python
- Stars
- 4.3k
- Forks
- 347
- Avg merge
- 2d 2h
- Merged PRs (30d)
- 1
Description
```python
field: tuple[int, str, float] = (1, "hello", 4.2)
field: tuple[int, ...] = (1, 2, 3, 4, 5, ...)
```
Add support to validate those types on `is_type_of` function
Contributor guide
Assessment
This issue has not been assessed yet.