From 559671033cd7f0ec03955d0089ad67e0c9a840ca Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Wed, 9 Aug 2017 13:58:32 -0700 Subject: [PATCH] removing unnessary else statement --- app/help_methods.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/help_methods.py b/app/help_methods.py index dd039af5..99ca526e 100644 --- a/app/help_methods.py +++ b/app/help_methods.py @@ -54,5 +54,5 @@ def parse_message(message): except KeyError: return "I can't help you with that" return "```{}```".format(explanation) - else: - return get_help_message('show_all') + + return get_help_message('show_all')