From 5b35760745549a99cf3e5910d894d1d5b56ce66f Mon Sep 17 00:00:00 2001 From: onemanbuilds <72015638+onemanbuilds@users.noreply.github.com> Date: Wed, 21 Oct 2020 04:16:04 +0200 Subject: [PATCH] changed waiting time from int to float now the waiting time can be 0.5 1.5 etc.. --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 16a9c0f..f9b36a0 100644 --- a/main.py +++ b/main.py @@ -35,7 +35,7 @@ def __init__(self): self.follow_option = int(input(Fore.YELLOW+'['+Fore.WHITE+'>'+Fore.YELLOW+'] [1]Follow [0]Unfollow: ')) self.browser_amount = int(input(Fore.YELLOW+'['+Fore.WHITE+'>'+Fore.YELLOW+'] How many browser would you like to run at the same time: ')) self.headless = int(input(Fore.YELLOW+'['+Fore.WHITE+'>'+Fore.YELLOW+'] Would you like to use headless mode [1]yes [0]no: ')) - self.waiting_time = int(input(Fore.YELLOW+'['+Fore.WHITE+'>'+Fore.YELLOW+'] How many seconds would you like to wait between follows: ')) + self.waiting_time = float(input(Fore.YELLOW+'['+Fore.WHITE+'>'+Fore.YELLOW+'] How many seconds would you like to wait between follows: ')) self.url = str(input(Fore.YELLOW+'['+Fore.WHITE+'>'+Fore.YELLOW+'] Enter the profile url: ')) print('')