Change math.pow -> pow (#624)

This commit is contained in:
Sviatoslav Bilokin 2025-02-13 10:06:59 +01:00 committed by GitHub
parent c79a354d57
commit 2797f2fb3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ BASE_PYTHON_TOOLS = {
"atan2": math.atan2,
"degrees": math.degrees,
"radians": math.radians,
"pow": math.pow,
"pow": pow,
"sqrt": math.sqrt,
"len": len,
"sum": sum,