Open ethe opened 5 years ago
class FooBar(pygraphy.Union): members = (Foo, Bar)
is not clearer than
FooBar = typing.Union[Foo, Bar]
is not clearer than