Removing the responses variable since im only using it once
This commit is contained in:
parent
b5704ff8a4
commit
59cbdce8cb
@ -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')
|
Loading…
x
Reference in New Issue
Block a user