From c4738cea12318b6fde2148558c2cd9144e75911f Mon Sep 17 00:00:00 2001 From: anmol098 Date: Mon, 6 Dec 2021 12:34:14 +0530 Subject: [PATCH] test fix --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 047cb81..7e24e5e 100644 --- a/main.py +++ b/main.py @@ -418,7 +418,7 @@ def get_line_of_code(): total_loc = sum( [yearly_data[year][quarter][lang] for year in yearly_data for quarter in yearly_data[year] for lang in yearly_data[year][quarter]]) - return humanize.intword(int(total_loc)) + return millify(int(total_loc)) def get_short_info(github):