From 59e332ea224372ab7f930ac6587d705a929e7c38 Mon Sep 17 00:00:00 2001 From: ghalidouga Date: Sun, 11 Aug 2019 14:52:29 +0700 Subject: [PATCH] fixing delay input --- TwitterBot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TwitterBot.py b/TwitterBot.py index 364462b..74b88f2 100644 --- a/TwitterBot.py +++ b/TwitterBot.py @@ -57,7 +57,7 @@ def like_tweet(self,topic): email = input("Enter your email \n") password = input("Enter your password \n") topic = input("Enter your topic \n") -delay = input("Enter your delay time between auto like and retweet. (In numbers only, example 10 for putting 10 seconds delay. 10 is recomennded delay \n") +delay = int ( input("Enter your delay time. 10 is recommended\n") ) ed = TwitterBot(email,password) ed.login() ed.like_tweet(topic)