Skip to content

Commit

Permalink
fixing delay input
Browse files Browse the repository at this point in the history
  • Loading branch information
ghalidouga committed Aug 11, 2019
1 parent 7244416 commit 59e332e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwitterBot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 59e332e

Please sign in to comment.