From c556d67b1acbad63ba770819c59996f8381d2a47 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Sat, 19 Aug 2017 18:03:04 -0500 Subject: [PATCH] Removing unnecessary else --- app/lewds.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/lewds.py b/app/lewds.py index 56f99876..0aac3c2b 100644 --- a/app/lewds.py +++ b/app/lewds.py @@ -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'