4165fc5d52b750dea11baf6d6d0fcf47afb6ed94
[pyutils.git] / src / pyutils / types / 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]