#!/usr/bin/env python3 # © Copyright 2021-2022, Scott Gasch """Simple type helpers.""" from typing import Union Numeric = Union[int, float]