From 47ba08ff5c25d64e231a2804b595ad0125c98e11 Mon Sep 17 00:00:00 2001 From: derAnfaenger Date: Tue, 15 Aug 2017 12:11:09 +0200 Subject: [PATCH] bots: Remove redundant newlines for giphy bot. --- zulip_bots/zulip_bots/bots/yoda/yoda.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/zulip_bots/zulip_bots/bots/yoda/yoda.py b/zulip_bots/zulip_bots/bots/yoda/yoda.py index b15d38f..e217f71 100644 --- a/zulip_bots/zulip_bots/bots/yoda/yoda.py +++ b/zulip_bots/zulip_bots/bots/yoda/yoda.py @@ -80,7 +80,6 @@ class YodaSpeakHandler(object): ' Did you follow the instructions in the `readme.md` file?' return error_message - def format_input(self, original_content): # gets rid of whitespace around the edges, so that they aren't a problem in the future message_content = original_content.strip() @@ -88,7 +87,6 @@ class YodaSpeakHandler(object): sentence = message_content.replace(' ', '+') return sentence - def handle_input(self, message, bot_handler): original_content = message['content'] @@ -124,7 +122,6 @@ class YodaSpeakHandler(object): content=message )) - def is_help(self, original_content): # gets rid of whitespace around the edges, so that they aren't a problem in the future message_content = original_content.strip()