This commit is contained in:
anmol098
2021-12-06 12:34:14 +05:30
parent 3d72c05d97
commit c4738cea12

View File

@@ -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):