Feature Request
Support Union of Enum and/or Literal in annotations for with_annotated decorator. Especially unions for different Enums seams to be desirable to reduce code duplication.
Code Example
class App(Cmd):
@with_annotated
def do_something_with_enums(a: EnumA, b: EnumB, combine: EnumA | EnumB) -> None:
...
Feature Request
Support Union of
Enumand/orLiteralin annotations forwith_annotateddecorator. Especially unions for different Enums seams to be desirable to reduce code duplication.Code Example