diff --git a/main.py b/main.py index d23c34d..830a301 100644 --- a/main.py +++ b/main.py @@ -79,9 +79,9 @@ def format_data(data): "Pro": np.round(data.get("PS2", 0.0), 2), "Pdilute": np.round(data.get("PS3", 0.0), 2), "Pretentate": np.round(data.get("PS1", 0.0), 2), - "Cfeed": np.round(data.get("Conductivity_Feed", 0.0), 1), - "Cperm": np.round(data.get("Conductivity_Permeate", 0.0), 1), - "Cdilute": np.round(data.get("Conductivity_Product", 0.0), 1), + "Cfeed": np.round(data.get("Conductivity_Feed", 0.0), 3), + "Cperm": np.round(data.get("Conductivity_Permeate", 0.0), 3), + "Cdilute": np.round(data.get("Conductivity_Product", 0.0), 3), "MV02": np.round(data.get("MV02", 0.0), 1), "MV02_sp": np.round(data.get("MV02_sp", 0.0), 1), "MV03": np.round(data.get("MV03", 0.0), 1),