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(',', '')