pygraphy
pygraphy copied to clipboard
Using Python native Union type
class FooBar(pygraphy.Union):
members = (Foo, Bar)
is not clearer than
FooBar = typing.Union[Foo, Bar]