types -> typez as the name mirrors a python core library name.
[pyutils.git] / src / pyutils / typez / simple.py
1 #!/usr/bin/env python3
2
3 # © Copyright 2021-2023, Scott Gasch
4
5 """Simple type helpers."""
6
7 from typing import Union
8
9 Numeric = Union[int, float]