```python class FooBar(pygraphy.Union): members = (Foo, Bar) ``` is not clearer than ```python FooBar = typing.Union[Foo, Bar] ```