7b80c178e5b8e43f35691c2fa0df641445adfd5d
[pyutils.git] / src / pyutils / types / simple.py
1 #!/usr/bin/env python3
2
3 # © Copyright 2021-2022, Scott Gasch
4
5 """Simple type helpers."""
6
7 from typing import Union
8
9 Numeric = Union[int, float]