Removing unnecessary else

This commit is contained in:
Luke Robles 2017-08-19 18:03:04 -05:00
parent 3d10ccaf89
commit d5dcf5d51c

View File

@ -98,5 +98,4 @@ def get_from_reddit():
def get_lewd(channel_name):
if 'nsfw' in channel_name:
return random.choice([get_from_reddit, get_from_danbooru])()
else:
return 'You can only use this command in NSFW channels'
return 'You can only use this command in NSFW channels'