Răsfoiți Sursa

12月30日更新:规则2判断逻辑BUG

张世豪 1 lună în urmă
părinte
comite
9baf530c97
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      public.py

+ 1 - 1
public.py

@@ -157,7 +157,7 @@ def water_stable(arr):
             #     shenHeList.append('')
             #     shenHeTar.append('')
             # 规则2判断
-            if pd.isna(row['总和(%)']) and row['总和(%)'] > 90 or row['总和(%)'] < 30:
+            if (not pd.isna(row['总和(%)'])) and (row['总和(%)'] > 90 or row['总和(%)'] < 30):
                 plusList.append('水稳性大团聚体总和:复核数据合理性。')
                 plusTar.append('水稳性大团聚体总和。')
             else: