Browse Source

remove round in reg

pull/3/head
Tony-HYX 2 years ago
parent
commit
ea66df54fb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      abl/abducer/kb.py

+ 1
- 1
abl/abducer/kb.py View File

@@ -378,7 +378,7 @@ class HWF_KB(RegKB):
'div': '/',
}
formula = [mapping[f] for f in formula]
return round(eval(''.join(formula)), 2)
return eval(''.join(formula))


import time


Loading…
Cancel
Save