DmitrMakeev commited on
Commit
a0a11bd
·
verified ·
1 Parent(s): f185dde

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -893,8 +893,7 @@ def calculate_nutrients():
893
  fertilizer_constants = data.get("fertilizerConstants")
894
  base_profile = data.get("targetProfile")
895
  total_nitrogen = data.get("totalNitrogen", 125.0)
896
- no3_ratio = data.get("no3Ratio", 8.25)
897
- nh4_ratio = data.get("nh4Ratio", 1.0)
898
  volume = data.get("volume", 100)
899
 
900
  calculator = NutrientCalculator(
 
893
  fertilizer_constants = data.get("fertilizerConstants")
894
  base_profile = data.get("targetProfile")
895
  total_nitrogen = data.get("totalNitrogen", 125.0)
896
+ NO3_RATIO = data.get("no3Ratio", 8.25)
 
897
  volume = data.get("volume", 100)
898
 
899
  calculator = NutrientCalculator(