修复小问题

This commit is contained in:
g1879 2023-12-12 23:53:29 +08:00
parent 5d192997ba
commit ce2d14c34e

View File

@ -1374,9 +1374,11 @@ def convert_argument(arg):
from math import inf
if arg == inf:
return {'unserializableValue': 'Infinity'}
if arg == -inf:
elif arg == -inf:
return {'unserializableValue': '-Infinity'}
raise TypeError(f'不支持参数{arg}的类型:{type(arg)}')
class Pseudo(object):
def __init__(self, ele):