(('Yes.', 'Yeah!', 'Ok!', 'Aye!', 'Great!'), 6),
(('No.', 'Naah..', 'Meh.', 'Nay.', 'You stupid?'), 6),
(('Maybe.', 'Dunno.', 'I don\'t care.'), 3),
- (('Decision tree growing, check back in 20 years.', "Can't tell right now.", "I need more information."), 1)
+ (('Decision tree growing, check back in 20 years.',
+ "Can't tell right now.", "I need more information.", "Sorry, did you say something?"), 1)
)
@staticmethod
elif 'choose' not in alternatives:
choice = random.choice(alternatives)
- return Action(msg='%s: I prefer %s!' % (sender, choice))
+ return Action(msg='{}: I prefer {}!'.format(sender, choice))
def choose_between(options):
responses = []