diff --git a/app/eight_ball.py b/app/eight_ball.py index ca489677..ed761092 100644 --- a/app/eight_ball.py +++ b/app/eight_ball.py @@ -41,7 +41,10 @@ def check_8ball(question): 'Reply hazy try again', ] - responses = positive_responses + negative_responses + noncommittal_responses - return random.choice(responses) + return random.choice( + positive_responses + + negative_responses + + noncommittal_responses + ) return help_methods.get_help_message('8ball') \ No newline at end of file