Change math.pow -> pow (#624)
This commit is contained in:
parent
c79a354d57
commit
2797f2fb3b
|
@ -85,7 +85,7 @@ BASE_PYTHON_TOOLS = {
|
||||||
"atan2": math.atan2,
|
"atan2": math.atan2,
|
||||||
"degrees": math.degrees,
|
"degrees": math.degrees,
|
||||||
"radians": math.radians,
|
"radians": math.radians,
|
||||||
"pow": math.pow,
|
"pow": pow,
|
||||||
"sqrt": math.sqrt,
|
"sqrt": math.sqrt,
|
||||||
"len": len,
|
"len": len,
|
||||||
"sum": sum,
|
"sum": sum,
|
||||||
|
|
Loading…
Reference in New Issue