diff --git a/studio/analytics.py b/studio/analytics.py index 9e4ca34..3abf6b5 100644 --- a/studio/analytics.py +++ b/studio/analytics.py @@ -822,7 +822,10 @@ def load(project_location): data["donework"] = sum(astlist) / len(astlist) except: data["donework"] = 0.0 - data["fraction"] = (data["donework"] + data["checklist"]) / 2 + + # I decided to remove the main checklist from the main fraction. This way the fraction + # reflects better the overall project. I will keep the old code in a comment for a while. + data["fraction"] = data["donework"] #(data["donework"] + data["checklist"]) / 2 # Let's record it for today.