Would appreciate if the docs were in English.

pull/15/head
GameLogist 2018-10-02 23:55:18 +05:30 committed by GitHub
parent e9ba0df874
commit 889a956785
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -3,8 +3,7 @@ def count_pm(*args):
alist = list([round(i*2-8,2) for i in args]) #计算三种颗粒浓度
result = []
for pm in alist:
pm_abs = abs(pm)
result.append(generate_iso_code(pm_abs))
result.append(generate_iso_code(abs(pm)))
print (result)
return result