Skip to content

Commit 6e6fb63

Browse files
committed
Update
1 parent fb700b8 commit 6e6fb63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

highpymath/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ def atan(a: any, use_leibniz: bool = False, return_int: bool = False, return_str
407407
raise MathValueError("a must be a number")
408408
if isinstance(a, int):
409409
a = float(a)
410-
_result = _atan(a=a)
410+
_result = _atan(a)
411411
if return_int:
412412
_result = int(_result)
413413
elif return_float:

0 commit comments

Comments
 (0)