This commit is contained in:
yumoqing 2026-03-25 18:13:24 +08:00
parent 52b6d2de59
commit c41441dbc3

View File

@ -109,8 +109,6 @@ typefuncs = {
'float': float 'float': float
} }
def typevalue(v, t): def typevalue(v, t):
if not v:
return None
f = typefuncs.get(t) f = typefuncs.get(t)
if not f: if not f:
return v return v