Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add Enum support with cleaner help message #90

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

zephvr
Copy link
Contributor

@zephvr zephvr commented Jul 16, 2022

Hi
I would like to propose this PR to fulfill #70 request

With it this code

# code.py
from enum import Enum
from tap import Tap

class MyEnum(str, Enum):
    A = "aaa"
    B = "bbb"
    C = "ccc"

class MyArgs(Tap):
    myEnum1: MyEnum = MyEnum.A  # My comment

print(MyArgs().parse_args())

Gives

$ python code.py -h
usage: demo.py [--myEnum1 {aaa,bbb,ccc}] [-h]

options:
  --myEnum1 {aaa,bbb,ccc}
                        (default=aaa) My comment
  -h, --help            show this help message and exit

Tell me if there is anything that needs a change before merging 馃槂

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant