mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
修复小问题
This commit is contained in:
parent
5d192997ba
commit
ce2d14c34e
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user