From eea4006effeb33a415a396c82d3273fcfa7fa63f Mon Sep 17 00:00:00 2001 From: "Jeison Yehuda Amihud (Blender Dumbass)" Date: Sun, 19 Feb 2023 20:47:39 +0000 Subject: [PATCH] Ignoring the main checklist It seems like the main checklist is never useful and just there to be full nearly always. Therefor I don't see much progress happening. I removed the main checklist from the main fraction for now. Will see how it goes. --- studio/analytics.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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.