Skip to content

Commit

Permalink
Merge pull request #19 from Yoctol/0.4.0
Browse files Browse the repository at this point in the history
0.4.0
  • Loading branch information
noobOriented authored Mar 11, 2020
2 parents b20024a + 88a0241 commit e6f8c5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion yoctol_argparse/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__title__ = 'yoctol-argparse'
__version__ = '0.3.0'
__version__ = '0.4.0'
__description__ = 'Argument Parser created by Yoctol'
__author__ = 'noobOriented'
2 changes: 1 addition & 1 deletion yoctol_argparse/formatters.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def _get_default_metavar_for_positional(self, action):

def format_choices(choices):
choice_strs = [
termcolor.colored(str(choice), attrs=['underline', 'dark'])
termcolor.colored(str(choice), color='cyan')
for choice in choices
]
return f"{{{', '.join(choice_strs)}}}"

0 comments on commit e6f8c5a

Please sign in to comment.