From 2e378af361c5d15120c3927f1c42b5a9ca0072e0 Mon Sep 17 00:00:00 2001 From: Thomas Wade Date: Sat, 29 Sep 2018 15:25:13 +0930 Subject: [PATCH] Replace 35.6M with 1.6M in comment 1.6M is a more realistic number, don't you agree? --- scrape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrape.py b/scrape.py index d4bd14b..3ae9a88 100755 --- a/scrape.py +++ b/scrape.py @@ -289,7 +289,7 @@ def Get_Follows(url, limit = 100): # Return just the values to make adding to the list easier return users.values() -# Converts string representations of numbers such as '1,234' or '35.6M' to integers +# Converts string representations of numbers such as '1,234' or '1.6M' to integers def Human_Str_To_Int(string): num = None string = string.lower().replace(',', '')