Use option text as title if no value is given

If the user only supplys a text for the option we used to return None as
item value. Now we return the text, so the user can easily get the value
back if they want to process it further and not only work with the given
option index (or supply the item twice).
master
Sebastian Lohff 4 년 전
부모 8c6ee790bf
커밋 648d5c956e

@ -99,10 +99,10 @@ class CliMenu:
if options:
for option in options:
if isinstance(option, tuple):
if isinstance(option, tuple) and len(option) == 2:
self.add_option(*option)
else:
self.add_option(option)
self.add_option(option, option)
def add_header(self, title, indent=True):
for text in title.split('\n'):

불러오는 중...
취소
저장